From e07a4dd51b2dfbe3a57f3be36ecba1b3c9c213b2 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 18 Jan 2018 12:10:47 -0800 Subject: [PATCH 1/2] Fix out-of-bounds error when no threads were needed for a zoom level --- .travis.yml | 2 +- tests/onefeature/-zg_--drop-densest-as-needed.json | 13 +++++++++++++ tests/onefeature/in.json | 1 + tile.cpp | 3 +++ 4 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 tests/onefeature/-zg_--drop-densest-as-needed.json create mode 100644 tests/onefeature/in.json diff --git a/.travis.yml b/.travis.yml index cd905ff..c44d170 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,7 @@ matrix: # debug+leak+address-sanitizer build - os: linux compiler: clang - env: CLANG_VERSION='3.8.0' BUILDTYPE=Debug ASAN_OPTIONS=detect_leaks=1 CC="clang-3.8" CXX="clang++-3.8" CXXFLAGS="-fsanitize=address" CFLAGS="-fsanitize=address" LDFLAGS="-fsanitize=address" FEWER=true + env: CLANG_VERSION='3.8.0' BUILDTYPE=Debug ASAN_OPTIONS=detect_leaks=1 CC="clang-3.8" CXX="clang++-3.8" CXXFLAGS="-fsanitize=address,undefined" CFLAGS="-fsanitize=address,undefined" LDFLAGS="-fsanitize=address,undefined" FEWER=true addons: apt: sources: ['ubuntu-toolchain-r-test' ] diff --git a/tests/onefeature/-zg_--drop-densest-as-needed.json b/tests/onefeature/-zg_--drop-densest-as-needed.json new file mode 100644 index 0000000..da418e6 --- /dev/null +++ b/tests/onefeature/-zg_--drop-densest-as-needed.json @@ -0,0 +1,13 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-180.000000,0.800000,180.000000,1.000000", +"center": "-179.989014,1.000000,14", +"description": "tests/onefeature/-zg_--drop-densest-as-needed.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 14, \"fields\": {} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1,\"geometry\": \"LineString\",\"attributeCount\": 0,\"attributes\": []}]}}", +"maxzoom": "14", +"minzoom": "0", +"name": "tests/onefeature/-zg_--drop-densest-as-needed.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +] } diff --git a/tests/onefeature/in.json b/tests/onefeature/in.json new file mode 100644 index 0000000..4d140e9 --- /dev/null +++ b/tests/onefeature/in.json @@ -0,0 +1 @@ +{"":"","":[{"":"","":{"":[]},"":{"":""}},{"":"","type":"LineString","coordinates":[[1000,0.8],[900,1]]} diff --git a/tile.cpp b/tile.cpp index 3119c32..18b09d8 100644 --- a/tile.cpp +++ b/tile.cpp @@ -2363,6 +2363,9 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo if (threads >= (1U << 30)) { threads = 1U << 30; } + if (threads < 1) { + threads = 1; + } // Assign temporary files to threads From d49606babfd7be18cf9c63eda188a074184138e1 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 18 Jan 2018 12:37:15 -0800 Subject: [PATCH 2/2] Fix opportunities for integer overflow --- CHANGELOG.md | 4 + serial.cpp | 6 +- ..._-zg_-M5000_--drop-smallest-as-needed.json | 1924 ++++++++++++++++- version.hpp | 2 +- write_json.cpp | 12 +- 5 files changed, 1932 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7661d1..fe82a99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.27.6 + +* Fix opportunities for integer overflow and out-of-bounds references + ## 1.27.5 * Add --cluster-densest-as-needed to cluster features diff --git a/serial.cpp b/serial.cpp index b45c2f3..ee071bc 100644 --- a/serial.cpp +++ b/serial.cpp @@ -473,7 +473,11 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { } } - sf.extent = (long long) extent; + if (extent <= LLONG_MAX) { + sf.extent = (long long) extent; + } else { + sf.extent = LLONG_MAX; + } if (!prevent[P_INPUT_ORDER]) { sf.seq = 0; diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json index 103f80e..e4f4e21 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json @@ -14,13 +14,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.273438, 71.938158 ], [ -93.955078, 71.773941 ], [ -92.900391, 71.328950 ], [ -91.582031, 70.199994 ], [ -92.460938, 69.718107 ], [ -90.615234, 69.503765 ], [ -90.615234, 68.496040 ], [ -89.296875, 69.287257 ], [ -88.066406, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.941650 ], [ -85.605469, 68.815927 ], [ -85.605469, 69.900118 ], [ -84.111328, 69.809309 ], [ -82.705078, 69.687618 ], [ -81.298828, 69.162558 ], [ -81.298828, 68.688521 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.135829 ], [ -83.408203, 66.443107 ], [ -84.814453, 66.266856 ], [ -85.781250, 66.583217 ], [ -86.132812, 66.089364 ], [ -87.099609, 65.219894 ], [ -87.363281, 64.811557 ], [ -88.505859, 64.129784 ], [ -90.000000, 64.052978 ], [ -90.791016, 63.626745 ], [ -90.791016, 62.995158 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.062733 ], [ -94.306641, 60.930432 ], [ -94.658203, 60.152442 ], [ -94.746094, 58.950008 ], [ -93.251953, 58.813742 ], [ -92.373047, 57.088515 ], [ -90.966797, 57.326521 ], [ -89.121094, 56.897004 ], [ -88.066406, 56.511018 ], [ -87.363281, 56.022948 ], [ -86.132812, 55.727110 ], [ -85.078125, 55.329144 ], [ -82.353516, 55.178868 ], [ -82.441406, 54.316523 ], [ -82.177734, 53.278353 ], [ -81.474609, 52.160455 ], [ -79.980469, 51.234407 ], [ -79.189453, 51.563412 ], [ -78.662109, 52.589701 ], [ -79.189453, 54.162434 ], [ -79.892578, 54.673831 ], [ -78.310547, 55.178868 ], [ -77.167969, 55.875311 ], [ -76.552734, 56.559482 ], [ -76.640625, 57.231503 ], [ -77.343750, 58.077876 ], [ -78.574219, 58.813742 ], [ -77.343750, 59.888937 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.349609 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.916016, 62.471724 ], [ -71.718750, 61.564574 ], [ -71.455078, 61.143235 ], [ -69.609375, 61.100789 ], [ -69.697266, 60.239811 ], [ -69.345703, 58.995311 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.269531, 58.768200 ], [ -65.302734, 59.888937 ], [ -64.599609, 60.370429 ], [ -61.435547, 56.992883 ], [ -61.875000, 56.365250 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.977614 ], [ -57.392578, 54.673831 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.696706 ], [ -55.810547, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.454007 ], [ -58.798828, 51.069017 ], [ -60.117188, 50.289339 ], [ -61.787109, 50.120578 ], [ -63.896484, 50.345460 ], [ -66.445312, 50.233152 ], [ -67.236328, 49.553726 ], [ -68.554688, 49.095452 ], [ -71.191406, 46.860191 ], [ -70.312500, 47.040182 ], [ -68.730469, 48.341646 ], [ -66.621094, 49.152970 ], [ -65.126953, 49.267805 ], [ -64.248047, 48.748945 ], [ -65.126953, 48.107431 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.853516, 45.951150 ], [ -61.083984, 45.274886 ], [ -63.281250, 44.715514 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.580391 ], [ -66.181641, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.511719, 45.336702 ], [ -67.148438, 45.151053 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 49.037868 ], [ -123.046875, 49.037868 ], [ -125.683594, 50.457504 ], [ -127.441406, 50.847573 ], [ -128.056641, 51.727028 ], [ -127.880859, 52.375599 ], [ -129.199219, 52.802761 ], [ -129.375000, 53.592505 ], [ -130.517578, 54.316523 ], [ -130.605469, 54.826008 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -141.064453, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.582031, 68.911005 ], [ -135.703125, 69.318320 ], [ -134.472656, 69.657086 ], [ -132.978516, 69.534518 ], [ -131.484375, 69.960439 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.809309 ], [ -128.408203, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.529297, 70.377854 ], [ -125.771484, 69.503765 ], [ -124.453125, 70.170201 ], [ -124.365234, 69.411242 ], [ -123.134766, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.552734, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.685547, 69.037142 ], [ -116.279297, 68.847665 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.554688, 67.709445 ], [ -110.830078, 67.809245 ], [ -109.951172, 68.007571 ], [ -108.896484, 67.407487 ], [ -107.841797, 67.908619 ], [ -108.896484, 68.334376 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.720441 ], [ -106.171875, 68.815927 ], [ -105.380859, 68.592487 ], [ -104.414062, 68.040461 ], [ -103.271484, 68.106102 ], [ -101.513672, 67.676085 ], [ -99.931641, 67.809245 ], [ -98.525391, 67.809245 ], [ -98.613281, 68.431513 ], [ -97.734375, 68.592487 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.305976 ], [ -95.537109, 68.106102 ], [ -94.746094, 68.073305 ], [ -94.306641, 69.099940 ], [ -95.361328, 69.687618 ], [ -96.503906, 70.110485 ], [ -96.416016, 71.216075 ], [ -95.273438, 71.938158 ] ] ], [ [ [ -55.898438, 51.672555 ], [ -55.458984, 51.618017 ], [ -56.865234, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.546875, 49.951220 ], [ -55.898438, 49.610710 ], [ -55.019531, 49.325122 ], [ -54.492188, 49.610710 ], [ -53.525391, 49.267805 ], [ -53.789062, 48.574790 ], [ -53.173828, 48.690960 ], [ -52.734375, 47.576526 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.228516, 46.860191 ], [ -53.964844, 47.635784 ], [ -54.316406, 47.754098 ], [ -55.458984, 46.920255 ], [ -56.074219, 46.920255 ], [ -55.371094, 47.398349 ], [ -56.337891, 47.635784 ], [ -59.326172, 47.635784 ], [ -59.501953, 47.931066 ], [ -58.798828, 48.283193 ], [ -59.238281, 48.574790 ], [ -58.447266, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.672555 ] ] ], [ [ [ -64.072266, 47.040182 ], [ -63.720703, 46.558860 ], [ -63.017578, 46.437857 ], [ -62.050781, 46.498392 ], [ -62.578125, 46.073231 ], [ -62.929688, 46.012224 ], [ -64.160156, 46.437857 ], [ -64.423828, 46.739861 ], [ -64.072266, 47.040182 ] ] ], [ [ [ -128.408203, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.345460 ], [ -124.980469, 49.496675 ], [ -123.925781, 49.095452 ], [ -123.574219, 48.516604 ], [ -124.013672, 48.400032 ], [ -125.683594, 48.864715 ], [ -126.035156, 49.210420 ], [ -126.914062, 49.553726 ], [ -127.089844, 49.837982 ], [ -128.144531, 50.007739 ], [ -128.496094, 50.569283 ], [ -128.408203, 50.792047 ] ] ], [ [ [ -64.248047, 50.007739 ], [ -62.929688, 49.724479 ], [ -61.875000, 49.325122 ], [ -61.875000, 49.152970 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.439557 ], [ -64.599609, 49.894634 ], [ -64.248047, 50.007739 ] ] ], [ [ [ -133.242188, 54.213861 ], [ -132.714844, 54.059388 ], [ -131.835938, 54.162434 ], [ -132.099609, 53.014783 ], [ -131.220703, 52.214339 ], [ -131.660156, 52.214339 ], [ -132.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -85.869141, 73.824820 ], [ -86.572266, 73.175897 ], [ -85.781250, 72.554498 ], [ -84.902344, 73.353055 ], [ -82.353516, 73.751205 ], [ -80.683594, 72.738003 ], [ -80.771484, 72.073911 ], [ -78.837891, 72.369105 ], [ -77.871094, 72.764065 ], [ -75.673828, 72.262310 ], [ -74.267578, 71.773941 ], [ -74.179688, 71.357067 ], [ -72.246094, 71.580532 ], [ -71.279297, 70.931004 ], [ -68.818359, 70.554179 ], [ -67.939453, 70.140364 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.533203, 68.073305 ], [ -64.863281, 67.875541 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.895596 ], [ -62.226562, 66.160511 ], [ -63.984375, 65.035060 ], [ -65.214844, 65.440002 ], [ -66.796875, 66.407955 ], [ -68.027344, 66.266856 ], [ -68.203125, 65.694476 ], [ -67.148438, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.390625, 64.396938 ], [ -64.687500, 63.430860 ], [ -65.039062, 62.714462 ], [ -66.357422, 62.955223 ], [ -68.818359, 63.782486 ], [ -66.357422, 62.308794 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.103516, 62.915233 ], [ -72.246094, 63.430860 ], [ -71.894531, 63.704722 ], [ -74.882812, 64.699105 ], [ -74.882812, 64.396938 ], [ -77.783203, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.958984, 65.330178 ], [ -76.025391, 65.330178 ], [ -74.003906, 65.476508 ], [ -74.355469, 65.838776 ], [ -74.003906, 66.337505 ], [ -72.685547, 67.305976 ], [ -72.949219, 67.742759 ], [ -73.388672, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.222656, 69.839622 ], [ -79.013672, 70.170201 ], [ -79.541016, 69.900118 ], [ -81.386719, 69.748551 ], [ -84.990234, 69.990535 ], [ -87.099609, 70.289117 ], [ -88.769531, 70.436799 ], [ -89.560547, 70.786910 ], [ -88.505859, 71.244356 ], [ -89.912109, 71.244356 ], [ -90.263672, 72.235514 ], [ -89.472656, 73.150440 ], [ -88.417969, 73.553302 ], [ -85.869141, 73.824820 ] ] ], [ [ [ -79.541016, 62.390369 ], [ -79.277344, 62.186014 ], [ -79.716797, 61.648162 ], [ -80.156250, 61.731526 ], [ -80.419922, 62.021528 ], [ -79.980469, 62.390369 ], [ -79.541016, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.144531, 62.186014 ], [ -83.847656, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -81.650391, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.091408 ], [ -80.156250, 63.743631 ], [ -81.035156, 63.430860 ], [ -82.617188, 63.665760 ], [ -83.144531, 64.129784 ], [ -84.111328, 63.587675 ], [ -85.605469, 63.074866 ], [ -85.869141, 63.665760 ], [ -87.275391, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.957031, 65.766727 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.146484, 67.609221 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -98.261719, 70.170201 ], [ -96.591797, 69.687618 ], [ -95.712891, 69.131271 ], [ -96.328125, 68.784144 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.974164 ], [ -99.843750, 69.411242 ], [ -98.964844, 69.718107 ], [ -98.261719, 70.170201 ] ] ], [ [ [ -115.224609, 73.327858 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.500000, 72.971189 ], [ -111.093750, 72.475276 ], [ -109.951172, 72.971189 ], [ -109.072266, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.753906, 72.073911 ], [ -108.457031, 73.099413 ], [ -107.578125, 73.252045 ], [ -106.523438, 73.099413 ], [ -105.468750, 72.685765 ], [ -104.501953, 71.016960 ], [ -100.986328, 70.050596 ], [ -101.162109, 69.595890 ], [ -102.744141, 69.534518 ], [ -102.128906, 69.131271 ], [ -102.480469, 68.784144 ], [ -104.326172, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.072266, 68.784144 ], [ -113.378906, 68.560384 ], [ -113.906250, 69.037142 ], [ -115.224609, 69.287257 ], [ -116.191406, 69.193800 ], [ -117.421875, 69.960439 ], [ -115.136719, 70.259452 ], [ -113.730469, 70.199994 ], [ -112.500000, 70.377854 ], [ -114.433594, 70.612614 ], [ -116.542969, 70.524897 ], [ -117.949219, 70.554179 ], [ -118.476562, 70.931004 ], [ -116.191406, 71.328950 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.580532 ], [ -118.564453, 72.315785 ], [ -117.949219, 72.711903 ], [ -115.224609, 73.327858 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.259738 ], [ -117.597656, 74.188052 ], [ -116.630859, 73.898111 ], [ -115.576172, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.267578, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.357067 ], [ -125.947266, 71.883578 ], [ -124.892578, 73.022592 ], [ -124.013672, 73.701948 ], [ -124.980469, 74.307353 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.228516, 73.652545 ], [ -97.382812, 73.775780 ], [ -97.207031, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.591797, 72.580829 ], [ -96.767578, 71.663663 ], [ -98.437500, 71.300793 ], [ -99.404297, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.568359, 72.528130 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.601562, 73.378215 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.570312, 74.140084 ], [ -92.460938, 74.116047 ], [ -90.527344, 73.873717 ], [ -92.021484, 72.971189 ], [ -93.251953, 72.790088 ], [ -94.306641, 72.046840 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.064453, 73.453473 ], [ -95.537109, 73.873717 ], [ -94.570312, 74.140084 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -80.419922, 73.775780 ], [ -78.134766, 73.652545 ], [ -76.376953, 73.124945 ], [ -76.289062, 72.842021 ], [ -78.398438, 72.893802 ], [ -79.541016, 72.764065 ], [ -79.804688, 72.816074 ], [ -80.947266, 73.353055 ], [ -80.859375, 73.701948 ], [ -80.419922, 73.775780 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.632812, 76.679785 ], [ -108.281250, 76.205967 ], [ -107.841797, 75.866646 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.497157 ], [ -106.347656, 75.027664 ], [ -109.775391, 74.867889 ], [ -112.236328, 74.425777 ], [ -113.818359, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.488281, 76.496311 ], [ -112.675781, 76.142958 ], [ -110.830078, 75.563041 ], [ -109.072266, 75.475131 ], [ -110.566406, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.176684 ], [ -94.746094, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.669922, 76.780655 ], [ -90.791016, 76.455203 ], [ -91.054688, 76.079668 ], [ -89.824219, 75.866646 ], [ -89.208984, 75.628632 ], [ -86.396484, 75.497157 ], [ -84.814453, 75.715633 ], [ -82.792969, 75.802118 ], [ -81.210938, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.892578, 74.936567 ], [ -80.507812, 74.660016 ], [ -82.001953, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.425777 ], [ -88.154297, 74.402163 ], [ -89.824219, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -94.921875, 75.650431 ], [ -94.042969, 75.297735 ], [ -93.691406, 74.982183 ], [ -94.218750, 74.613445 ], [ -95.625000, 74.683250 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.921875, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.822266, 76.268695 ], [ -97.734375, 75.758940 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.913708 ], [ -100.898438, 75.073010 ], [ -100.898438, 75.650431 ], [ -102.568359, 75.584937 ], [ -102.568359, 76.351896 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.659520 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.279297, 77.655346 ], [ -116.367188, 76.880775 ], [ -117.158203, 76.537296 ], [ -118.125000, 76.496311 ], [ -119.970703, 76.058508 ], [ -121.552734, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.880775 ], [ -119.179688, 77.523122 ], [ -117.597656, 77.504119 ], [ -116.279297, 77.655346 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.554688, 83.111071 ], [ -65.830078, 83.036882 ], [ -63.720703, 82.907847 ], [ -61.875000, 82.631333 ], [ -61.962891, 82.367483 ], [ -64.335938, 81.935526 ], [ -66.796875, 81.735830 ], [ -67.675781, 81.505299 ], [ -65.566406, 81.518272 ], [ -67.851562, 80.900669 ], [ -69.521484, 80.618424 ], [ -71.191406, 79.812302 ], [ -73.300781, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.992188, 79.335219 ], [ -75.585938, 79.204309 ], [ -76.289062, 79.021712 ], [ -75.410156, 78.543044 ], [ -76.376953, 78.188586 ], [ -77.958984, 77.915669 ], [ -78.398438, 77.523122 ], [ -79.804688, 77.215640 ], [ -79.628906, 76.999935 ], [ -77.958984, 77.039418 ], [ -77.958984, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.232422, 76.455203 ], [ -86.132812, 76.310358 ], [ -87.626953, 76.434604 ], [ -89.560547, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.196176 ], [ -88.330078, 77.915669 ], [ -87.714844, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.396484, 78.188586 ], [ -87.978516, 78.384855 ], [ -87.187500, 78.767792 ], [ -85.429688, 79.004962 ], [ -85.166016, 79.351472 ], [ -86.572266, 79.749932 ], [ -87.011719, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.496094, 80.103470 ], [ -81.914062, 80.474065 ], [ -84.111328, 80.589727 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.263672, 81.268385 ], [ -91.406250, 81.557074 ], [ -91.669922, 81.898451 ], [ -90.175781, 82.094243 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.608754 ], [ -83.232422, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.026219 ], [ -79.365234, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -109.863281, 78.007325 ], [ -110.214844, 77.711590 ], [ -112.060547, 77.427824 ], [ -113.554688, 77.748946 ], [ -112.763672, 78.061989 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -96.503906, 77.841848 ], [ -94.482422, 77.823323 ], [ -93.779297, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.504119 ], [ -96.240234, 77.561042 ], [ -96.503906, 77.841848 ] ] ], [ [ [ -98.701172, 78.887002 ], [ -97.382812, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.888672, 78.061989 ], [ -97.382812, 77.860345 ], [ -98.173828, 78.098296 ], [ -98.613281, 78.473002 ], [ -98.701172, 78.887002 ] ] ], [ [ [ -105.556641, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.898438, 78.801980 ], [ -100.107422, 78.331648 ], [ -99.755859, 77.915669 ], [ -101.337891, 78.025574 ], [ -103.007812, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.468750, 78.920832 ], [ -105.556641, 79.302640 ] ] ], [ [ [ -92.460938, 81.268385 ], [ -91.142578, 80.732349 ], [ -87.890625, 80.327506 ], [ -87.099609, 79.671438 ], [ -85.869141, 79.351472 ], [ -87.275391, 79.055137 ], [ -89.121094, 78.296044 ], [ -90.878906, 78.224513 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.767792 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.383905 ], [ -96.152344, 79.718605 ], [ -96.767578, 80.163710 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.819036 ], [ -109.687500, 78.612665 ], [ -110.917969, 78.420193 ], [ -112.587891, 78.420193 ], [ -112.587891, 78.560488 ], [ -111.533203, 78.853070 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.961440 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.715015 ], [ -156.445312, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ], [ [ [ -158.027344, 21.779905 ], [ -157.675781, 21.371244 ], [ -158.203125, 21.371244 ], [ -158.378906, 21.616579 ], [ -158.027344, 21.779905 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.345703, 22.024546 ], [ -159.521484, 21.943046 ], [ -159.873047, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ], [ [ [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.115234, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.576172, 41.836828 ], [ -70.136719, 41.836828 ], [ -70.224609, 42.163403 ], [ -69.960938, 41.967659 ], [ -70.048828, 41.640078 ], [ -72.949219, 41.244772 ], [ -73.740234, 40.979898 ], [ -72.246094, 41.178654 ], [ -71.982422, 40.979898 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -74.003906, 40.780541 ], [ -74.267578, 40.513799 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.774769 ], [ -74.970703, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.585938, 39.504041 ], [ -75.322266, 39.027719 ], [ -75.146484, 38.822591 ], [ -75.058594, 38.410558 ], [ -76.025391, 37.230328 ], [ -76.113281, 37.300275 ], [ -75.761719, 37.996163 ], [ -76.289062, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.754083 ], [ -76.376953, 38.134557 ], [ -76.992188, 38.272689 ], [ -76.376953, 37.926868 ], [ -76.289062, 37.020098 ], [ -76.025391, 36.949892 ], [ -75.761719, 35.603719 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.134766, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.277344, 33.211116 ], [ -80.332031, 32.546813 ], [ -81.386719, 31.503629 ], [ -81.562500, 30.751278 ], [ -81.386719, 30.069094 ], [ -80.595703, 28.536275 ], [ -80.595703, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.878994 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.244696 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -83.759766, 29.993002 ], [ -84.111328, 30.145127 ], [ -85.166016, 29.688053 ], [ -85.781250, 30.221102 ], [ -86.484375, 30.448674 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.448674 ], [ -89.648438, 30.221102 ], [ -89.472656, 29.916852 ], [ -89.472656, 29.535230 ], [ -89.296875, 29.305561 ], [ -89.472656, 29.228890 ], [ -89.824219, 29.382175 ], [ -90.175781, 29.152161 ], [ -90.966797, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.548828, 29.611670 ], [ -93.251953, 29.840644 ], [ -94.746094, 29.535230 ], [ -95.625000, 28.767659 ], [ -96.679688, 28.381735 ], [ -97.207031, 27.839076 ], [ -97.382812, 27.449790 ], [ -97.382812, 26.745610 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.476562, 33.797409 ], [ -118.564453, 34.089061 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.673828, 34.669359 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.607422, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.925781, 39.774769 ], [ -124.453125, 40.380028 ], [ -124.189453, 41.178654 ], [ -124.277344, 42.032974 ], [ -124.541016, 42.811522 ], [ -124.189453, 43.771094 ], [ -123.925781, 45.583290 ], [ -124.101562, 46.920255 ], [ -124.716797, 48.224673 ], [ -124.628906, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.398349 ], [ -122.871094, 49.037868 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ] ] ], [ [ [ -156.621094, 71.385142 ], [ -155.126953, 71.159391 ], [ -154.423828, 70.699951 ], [ -153.984375, 70.902268 ], [ -152.226562, 70.844673 ], [ -152.314453, 70.612614 ], [ -150.820312, 70.436799 ], [ -149.765625, 70.554179 ], [ -147.656250, 70.229744 ], [ -145.722656, 70.140364 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.170201 ], [ -142.119141, 69.869892 ], [ -141.064453, 69.718107 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -130.605469, 54.826008 ], [ -131.132812, 55.229023 ], [ -132.011719, 55.528631 ], [ -132.275391, 56.413901 ], [ -133.593750, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.539595 ], [ -139.921875, 59.578851 ], [ -142.646484, 60.108670 ], [ -143.964844, 60.020952 ], [ -145.986328, 60.500525 ], [ -147.128906, 60.887700 ], [ -148.271484, 60.673179 ], [ -148.095703, 60.020952 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.400365 ], [ -151.787109, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.759160 ], [ -150.380859, 61.058285 ], [ -150.644531, 61.312452 ], [ -151.962891, 60.759160 ], [ -152.666016, 60.064840 ], [ -154.072266, 59.355596 ], [ -153.369141, 58.904646 ], [ -154.248047, 58.170702 ], [ -156.357422, 57.468589 ], [ -156.621094, 56.992883 ], [ -158.203125, 56.511018 ], [ -158.466797, 56.022948 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.677584 ], [ -163.125000, 54.724620 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.622978 ], [ -162.949219, 55.379110 ], [ -161.806641, 55.924586 ], [ -160.576172, 56.022948 ], [ -160.136719, 56.462490 ], [ -158.730469, 57.040730 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.610107 ], [ -157.587891, 58.355630 ], [ -157.060547, 58.950008 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -159.082031, 58.447733 ], [ -159.785156, 58.950008 ], [ -160.048828, 58.585436 ], [ -160.400391, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.310768 ], [ -161.894531, 59.667741 ], [ -162.597656, 60.020952 ], [ -163.828125, 59.800634 ], [ -164.707031, 60.283408 ], [ -165.410156, 60.543775 ], [ -165.410156, 61.100789 ], [ -166.201172, 61.522695 ], [ -165.761719, 62.103883 ], [ -164.970703, 62.633770 ], [ -164.619141, 63.154355 ], [ -163.828125, 63.233627 ], [ -163.125000, 63.074866 ], [ -162.333984, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.839844, 63.782486 ], [ -161.015625, 64.244595 ], [ -161.542969, 64.434892 ], [ -160.839844, 64.811557 ], [ -161.455078, 64.811557 ], [ -162.509766, 64.586185 ], [ -162.773438, 64.358931 ], [ -163.564453, 64.586185 ], [ -164.970703, 64.472794 ], [ -166.464844, 64.699105 ], [ -166.904297, 65.109148 ], [ -168.134766, 65.694476 ], [ -166.728516, 66.089364 ], [ -164.531250, 66.583217 ], [ -163.740234, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.757250 ], [ -163.740234, 67.135829 ], [ -164.443359, 67.642676 ], [ -165.410156, 68.073305 ], [ -166.816406, 68.366801 ], [ -166.289062, 68.911005 ], [ -164.443359, 68.942607 ], [ -163.212891, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.982422, 70.348318 ], [ -161.015625, 70.466207 ], [ -159.082031, 70.902268 ], [ -158.203125, 70.844673 ], [ -156.621094, 71.385142 ] ] ], [ [ [ -153.281250, 57.984808 ], [ -152.578125, 57.938183 ], [ -152.226562, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.072266, 56.752723 ], [ -154.599609, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.281250, 57.984808 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ -171.738281, 63.821288 ], [ -171.123047, 63.626745 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.470145 ], [ -168.750000, 63.312683 ], [ -168.837891, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.156250, 83.647837 ], [ -27.158203, 83.520162 ], [ -20.917969, 82.732092 ], [ -22.763672, 82.344100 ], [ -26.542969, 82.308893 ], [ -31.904297, 82.202302 ], [ -31.464844, 82.033568 ], [ -27.861328, 82.142451 ], [ -24.873047, 81.798757 ], [ -22.939453, 82.094243 ], [ -22.148438, 81.735830 ], [ -23.203125, 81.160996 ], [ -20.654297, 81.531225 ], [ -15.820312, 81.923186 ], [ -12.832031, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.347656, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.126953, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.984375, 79.400085 ], [ -19.775391, 78.767792 ], [ -19.687500, 77.655346 ], [ -18.544922, 76.999935 ], [ -20.039062, 76.960334 ], [ -21.708984, 76.639226 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.742188, 75.163300 ], [ -19.423828, 74.307353 ], [ -21.621094, 74.235878 ], [ -20.478516, 73.824820 ], [ -20.830078, 73.478485 ], [ -22.236328, 73.327858 ], [ -23.642578, 73.327858 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.208678 ], [ -24.345703, 72.607120 ], [ -24.873047, 72.342464 ], [ -23.466797, 72.100944 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.495574 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.412109, 70.140364 ], [ -25.048828, 69.287257 ], [ -27.773438, 68.496040 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.138852 ], [ -32.871094, 67.742759 ], [ -34.277344, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.089844, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.168107 ], [ -41.220703, 63.509375 ], [ -42.890625, 62.714462 ], [ -42.451172, 61.938950 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.064840 ], [ -46.318359, 60.887700 ], [ -48.339844, 60.887700 ], [ -49.306641, 61.438767 ], [ -49.921875, 62.390369 ], [ -51.679688, 63.665760 ], [ -52.207031, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.124962 ], [ -53.349609, 66.861082 ], [ -54.052734, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.752315 ], [ -51.152344, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.442128 ], [ -53.525391, 69.287257 ], [ -54.755859, 69.626510 ], [ -54.755859, 70.318738 ], [ -54.404297, 70.844673 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.052734, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.898438, 71.663663 ], [ -54.755859, 72.607120 ], [ -55.371094, 72.971189 ], [ -57.392578, 74.729615 ], [ -58.623047, 75.118222 ], [ -58.623047, 75.519151 ], [ -61.347656, 76.121893 ], [ -63.457031, 76.184995 ], [ -68.554688, 76.079668 ], [ -69.697266, 76.393312 ], [ -71.455078, 77.019692 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.389504 ], [ -71.103516, 77.636542 ], [ -73.300781, 78.061989 ], [ -73.212891, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.390625, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.236328, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.314453, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.045740 ], [ -57.216797, 82.202302 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.898451 ], [ -50.449219, 82.448764 ], [ -48.076172, 82.070028 ], [ -46.669922, 81.996942 ], [ -44.560547, 81.672424 ], [ -46.933594, 82.202302 ], [ -46.845703, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.671875, 83.549851 ], [ -35.156250, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.832031, -63.233627 ], [ -57.304688, -63.509375 ], [ -57.656250, -63.821288 ], [ -58.623047, -64.129784 ], [ -59.062500, -64.358931 ], [ -59.853516, -64.206377 ], [ -60.644531, -64.282760 ], [ -62.050781, -64.774125 ], [ -62.578125, -65.072130 ], [ -62.666016, -65.476508 ], [ -62.666016, -65.838776 ], [ -62.138672, -66.160511 ], [ -62.841797, -66.407955 ], [ -63.808594, -66.478208 ], [ -65.566406, -67.575717 ], [ -65.742188, -67.941650 ], [ -65.390625, -68.334376 ], [ -64.863281, -68.656555 ], [ -63.984375, -68.911005 ], [ -63.281250, -69.224997 ], [ -62.841797, -69.595890 ], [ -62.314453, -70.377854 ], [ -61.875000, -70.699951 ], [ -61.523438, -71.074056 ], [ -61.435547, -71.992578 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -64.423828, -75.253057 ], [ -65.917969, -75.628632 ], [ -67.236328, -75.780545 ], [ -69.873047, -76.205967 ], [ -70.664062, -76.618901 ], [ -72.246094, -76.659520 ], [ -74.003906, -76.618901 ], [ -75.585938, -76.700019 ], [ -77.255859, -76.700019 ], [ -76.992188, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.355469, -77.542096 ], [ -73.740234, -77.897255 ], [ -74.794922, -78.206563 ], [ -76.552734, -78.116408 ], [ -77.958984, -78.367146 ], [ -78.046875, -79.171335 ], [ -76.904297, -79.512662 ], [ -76.640625, -79.874297 ], [ -75.410156, -80.253391 ], [ -73.300781, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.748454 ], [ -59.765625, -82.367483 ], [ -58.798828, -82.842440 ], [ -58.271484, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.701172, -82.249855 ], [ -51.591797, -81.996942 ], [ -49.833984, -81.723188 ], [ -47.285156, -81.697844 ], [ -44.912109, -81.836284 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.348076 ], [ -38.320312, -81.334844 ], [ -34.453125, -80.900669 ], [ -30.146484, -80.589727 ], [ -28.564453, -80.327506 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.624056 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.286313 ], [ -33.750000, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.071812 ], [ -35.859375, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.636542 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.659520 ], [ -25.488281, -76.268695 ], [ -23.994141, -76.226907 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.578125, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.468750, -74.091974 ], [ -16.523438, -73.849286 ], [ -16.171875, -73.453473 ], [ -15.468750, -73.124945 ], [ -13.359375, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -71.992578 ], [ -11.074219, -71.524909 ], [ -10.371094, -71.244356 ], [ -9.140625, -71.300793 ], [ -8.613281, -71.635993 ], [ -7.470703, -71.691293 ], [ -7.382812, -71.300793 ], [ -6.943359, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.385142 ], [ -4.394531, -71.441171 ], [ -1.845703, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.791016, -71.300793 ], [ 1.845703, -71.102543 ], [ 4.130859, -70.844673 ], [ 5.097656, -70.612614 ], [ 6.240234, -70.436799 ], [ 7.119141, -70.229744 ], [ 7.734375, -69.869892 ], [ 8.437500, -70.140364 ], [ 9.492188, -69.990535 ], [ 10.810547, -70.815812 ], [ 11.953125, -70.612614 ], [ 12.392578, -70.229744 ], [ 13.359375, -69.960439 ], [ 14.677734, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.908203, -70.020587 ], [ 16.962891, -69.900118 ], [ 19.248047, -69.869892 ], [ 21.445312, -70.050596 ], [ 21.884766, -70.377854 ], [ 22.500000, -70.670881 ], [ 23.642578, -70.495574 ], [ 27.070312, -70.436799 ], [ 29.091797, -70.199994 ], [ 29.970703, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.904297, -69.657086 ], [ 32.695312, -69.380313 ], [ 33.222656, -68.815927 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.244141, -69.005675 ], [ 36.123047, -69.224997 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.503765 ], [ 38.583984, -69.748551 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.869141, -68.911005 ], [ 41.923828, -68.592487 ], [ 44.033203, -68.236823 ], [ 46.494141, -67.575717 ], [ 47.373047, -67.709445 ], [ 48.955078, -67.067433 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.888672, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.558594, -66.018018 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.946472 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.652977 ], [ 58.710938, -67.272043 ], [ 59.853516, -67.373698 ], [ 61.347656, -67.941650 ], [ 62.314453, -68.007571 ], [ 63.105469, -67.809245 ], [ 63.984375, -67.373698 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.908619 ], [ 68.818359, -67.908619 ], [ 69.697266, -68.942607 ], [ 69.609375, -69.224997 ], [ 69.521484, -69.657086 ], [ 68.554688, -69.930300 ], [ 67.763672, -70.289117 ], [ 67.939453, -70.670881 ], [ 68.994141, -70.670881 ], [ 68.906250, -71.045529 ], [ 67.939453, -71.828840 ], [ 68.642578, -72.154890 ], [ 69.785156, -72.262310 ], [ 71.015625, -72.073911 ], [ 71.894531, -71.300793 ], [ 73.037109, -70.699951 ], [ 73.828125, -69.869892 ], [ 74.443359, -69.748551 ], [ 75.585938, -69.718107 ], [ 77.607422, -69.442128 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.301905 ], [ 80.859375, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.001953, -67.339861 ], [ 82.705078, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.605469, -67.067433 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.769531, -66.930060 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.204032 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.130859, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.712891, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.613281, -67.101656 ], [ 99.667969, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.946472 ], [ 106.171875, -66.930060 ], [ 108.017578, -66.930060 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.554688, -65.874725 ], [ 114.345703, -66.053716 ], [ 115.576172, -66.687784 ], [ 116.630859, -66.652977 ], [ 117.333984, -66.895596 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.238062 ], [ 120.849609, -67.169955 ], [ 122.255859, -66.548263 ], [ 123.134766, -66.478208 ], [ 125.156250, -66.687784 ], [ 126.035156, -66.548263 ], [ 126.914062, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.890625, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.694476 ], [ 135.000000, -65.293468 ], [ 135.615234, -65.549367 ], [ 135.791016, -66.018018 ], [ 136.582031, -66.757250 ], [ 137.373047, -66.930060 ], [ 140.800781, -66.791909 ], [ 142.998047, -66.791909 ], [ 145.458984, -66.895596 ], [ 146.162109, -67.204032 ], [ 145.986328, -67.575717 ], [ 146.601562, -67.875541 ], [ 148.798828, -68.366801 ], [ 152.490234, -68.847665 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.131271 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.609375, -69.990535 ], [ 160.751953, -70.199994 ], [ 161.542969, -70.554179 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 168.398438, -70.959697 ], [ 170.419922, -71.385142 ], [ 171.123047, -71.691293 ], [ 171.035156, -72.073911 ], [ 170.507812, -72.422268 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.800318 ], [ 167.343750, -74.164085 ], [ 166.025391, -74.378513 ], [ 165.585938, -74.752746 ], [ 164.179688, -75.453071 ], [ 163.564453, -76.226907 ], [ 163.476562, -77.059116 ], [ 164.003906, -77.446940 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.170582 ], [ 166.552734, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.146484, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.718750, -79.154810 ], [ 160.839844, -79.718605 ], [ 160.664062, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.268385 ], [ 161.542969, -81.685144 ], [ 162.421875, -82.057893 ], [ 163.652344, -82.390794 ], [ 166.552734, -83.015539 ], [ 168.837891, -83.328951 ], [ 169.365234, -83.820492 ], [ 172.265625, -84.034319 ], [ 173.144531, -84.405941 ], [ 175.957031, -84.151901 ], [ 180.000000, -84.706049 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.462891, -84.532994 ], [ -172.968750, -84.052561 ], [ -169.980469, -83.876998 ], [ -167.080078, -84.566386 ], [ -164.267578, -84.818373 ], [ -162.597656, -85.051129 ], [ -161.982422, -85.133834 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.996094, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.309527 ], [ -143.261719, -85.051129 ], [ -143.173828, -85.035942 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.524614 ], [ -150.117188, -84.293450 ], [ -150.908203, -83.895719 ], [ -153.632812, -83.686615 ], [ -153.457031, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.929688, -82.033568 ], [ -154.599609, -81.761058 ], [ -155.302734, -81.413933 ], [ -156.884766, -81.093214 ], [ -154.423828, -81.147481 ], [ -152.138672, -80.997452 ], [ -150.732422, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.304688, -80.661308 ], [ -146.425781, -80.327506 ], [ -146.777344, -79.920548 ], [ -149.589844, -79.351472 ], [ -151.611328, -79.286313 ], [ -153.457031, -79.154810 ], [ -155.390625, -79.055137 ], [ -156.005859, -78.681870 ], [ -157.324219, -78.367146 ], [ -158.115234, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.939453, -76.980149 ], [ -157.060547, -77.293202 ], [ -155.390625, -77.196176 ], [ -153.808594, -77.059116 ], [ -152.929688, -77.485088 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.798828, -76.900709 ], [ -147.656250, -76.557743 ], [ -146.162109, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.715633 ], [ -146.250000, -75.364506 ], [ -144.931641, -75.185789 ], [ -144.404297, -75.519151 ], [ -142.822266, -75.320025 ], [ -141.679688, -75.073010 ], [ -140.273438, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.263672, -74.283563 ], [ -133.769531, -74.425777 ], [ -132.275391, -74.283563 ], [ -130.957031, -74.472903 ], [ -129.638672, -74.449358 ], [ -128.320312, -74.307353 ], [ -125.419922, -74.496413 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.496413 ], [ -119.707031, -74.472903 ], [ -118.740234, -74.164085 ], [ -117.509766, -74.019543 ], [ -116.279297, -74.235878 ], [ -115.048828, -74.043723 ], [ -113.994141, -73.701948 ], [ -113.378906, -74.019543 ], [ -113.027344, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.402163 ], [ -110.126953, -74.775843 ], [ -108.720703, -74.890816 ], [ -107.578125, -75.163300 ], [ -106.171875, -75.118222 ], [ -104.941406, -74.936567 ], [ -103.447266, -74.982183 ], [ -100.722656, -75.297735 ], [ -100.195312, -74.867889 ], [ -101.337891, -74.164085 ], [ -102.568359, -74.091974 ], [ -103.183594, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.738003 ], [ -101.689453, -72.790088 ], [ -100.371094, -72.738003 ], [ -99.140625, -72.893802 ], [ -98.173828, -73.201317 ], [ -97.734375, -73.553302 ], [ -96.416016, -73.602996 ], [ -92.460938, -73.150440 ], [ -91.494141, -73.378215 ], [ -90.175781, -73.302624 ], [ -89.296875, -72.554498 ], [ -88.505859, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.073844 ], [ -85.253906, -73.478485 ], [ -83.935547, -73.503461 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.771484, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.365234, -73.503461 ], [ -77.958984, -73.403338 ], [ -76.992188, -73.627789 ], [ -76.289062, -73.946791 ], [ -74.970703, -73.849286 ], [ -72.861328, -73.378215 ], [ -68.994141, -72.996909 ], [ -68.027344, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.324219, -71.635993 ], [ -68.554688, -70.080562 ], [ -68.554688, -69.687618 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.500000, -68.138852 ], [ -67.763672, -67.305976 ], [ -67.324219, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.248047, -65.146115 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.548440 ], [ -61.435547, -64.244595 ], [ -60.732422, -64.052978 ], [ -59.941406, -63.937372 ], [ -59.238281, -63.665760 ], [ -58.623047, -63.352129 ], [ -57.832031, -63.233627 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.279297, -78.367146 ], [ -160.312500, -78.681870 ], [ -159.521484, -79.038437 ], [ -159.257812, -79.496652 ], [ -161.191406, -79.624056 ], [ -162.509766, -79.269962 ], [ -163.125000, -78.853070 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.431641, -73.302624 ], [ -121.289062, -73.478485 ], [ -119.970703, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.355469, -73.824820 ], [ -120.234375, -74.067866 ], [ -121.640625, -73.995328 ], [ -122.695312, -73.652545 ], [ -122.431641, -73.302624 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.595703, -73.478485 ], [ -124.101562, -73.849286 ], [ -125.947266, -73.726595 ], [ -127.353516, -73.453473 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.777344, -71.691293 ], [ -100.458984, -71.828840 ], [ -99.052734, -71.910888 ], [ -97.910156, -72.046840 ], [ -96.855469, -71.938158 ], [ -96.240234, -72.501722 ], [ -97.031250, -72.422268 ], [ -98.261719, -72.475276 ], [ -99.492188, -72.422268 ], [ -100.810547, -72.475276 ], [ -101.865234, -72.289067 ], [ -102.392578, -71.883578 ], [ -101.777344, -71.691293 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -69.785156, -69.224997 ], [ -68.466797, -70.931004 ], [ -68.378906, -71.385142 ], [ -68.818359, -72.154890 ], [ -69.960938, -72.289067 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.982422, -72.073911 ], [ -74.267578, -72.342464 ], [ -74.970703, -72.046840 ], [ -75.058594, -71.635993 ], [ -73.916016, -71.244356 ], [ -73.300781, -71.130988 ], [ -72.158203, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.806641, -69.503765 ], [ -71.191406, -69.005675 ], [ -70.312500, -68.847665 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.071812 ], [ -43.417969, -80.012423 ], [ -44.912109, -80.327506 ], [ -46.582031, -80.589727 ], [ -48.427734, -80.816891 ], [ -50.537109, -81.024916 ], [ -52.910156, -80.956099 ], [ -54.228516, -80.632740 ], [ -54.052734, -80.208652 ], [ -51.855469, -79.935918 ], [ -51.064453, -79.608215 ], [ -49.921875, -78.801980 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.027655 ], [ -60.205078, -80.997452 ], [ -62.314453, -80.858875 ], [ -64.511719, -80.914558 ], [ -65.742188, -80.575346 ], [ -66.357422, -80.253391 ], [ -64.072266, -80.283104 ], [ -61.962891, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.311143 ], [ 110.302734, 18.729502 ], [ 109.423828, 18.229351 ], [ 108.632812, 18.562947 ], [ 108.544922, 19.394068 ], [ 109.072266, 19.890723 ], [ 110.126953, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.189453, 39.977120 ], [ 122.783203, 39.639538 ], [ 122.080078, 39.232253 ], [ 121.025391, 38.959409 ], [ 121.552734, 39.368279 ], [ 121.289062, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.552734, 40.979898 ], [ 120.761719, 40.647304 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.300299 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.828125, 37.926868 ], [ 118.828125, 37.509726 ], [ 119.619141, 37.160317 ], [ 120.761719, 37.926868 ], [ 121.640625, 37.509726 ], [ 122.343750, 37.509726 ], [ 122.519531, 36.949892 ], [ 121.025391, 36.668419 ], [ 120.585938, 36.173357 ], [ 119.619141, 35.675147 ], [ 119.091797, 34.957995 ], [ 120.146484, 34.379713 ], [ 120.585938, 33.431441 ], [ 121.904297, 31.728167 ], [ 121.816406, 30.977609 ], [ 121.201172, 30.751278 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.531250, 25.799891 ], [ 118.652344, 24.607069 ], [ 115.839844, 22.836946 ], [ 114.697266, 22.674847 ], [ 114.082031, 22.268764 ], [ 113.730469, 22.593726 ], [ 113.203125, 22.105999 ], [ 111.796875, 21.616579 ], [ 110.742188, 21.453069 ], [ 110.390625, 20.385825 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.453069 ], [ 108.457031, 21.779905 ], [ 108.017578, 21.616579 ], [ 106.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.711590 ], [ 105.996094, 77.389504 ], [ 104.677734, 77.137612 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.496311 ], [ 108.105469, 76.740397 ], [ 111.005859, 76.720223 ], [ 113.291016, 76.226907 ], [ 114.082031, 75.866646 ], [ 113.818359, 75.342282 ], [ 112.763672, 75.050354 ], [ 110.126953, 74.496413 ], [ 109.335938, 74.188052 ], [ 110.566406, 74.043723 ], [ 112.060547, 73.800318 ], [ 112.939453, 73.995328 ], [ 113.466797, 73.353055 ], [ 113.906250, 73.602996 ], [ 115.488281, 73.775780 ], [ 118.740234, 73.602996 ], [ 119.003906, 73.124945 ], [ 123.134766, 72.996909 ], [ 123.222656, 73.751205 ], [ 125.332031, 73.578167 ], [ 126.914062, 73.578167 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.422268 ], [ 128.408203, 71.992578 ], [ 129.638672, 71.216075 ], [ 131.220703, 70.815812 ], [ 132.187500, 71.856229 ], [ 133.857422, 71.413177 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.164062, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.867930 ], [ 149.414062, 72.208678 ], [ 150.292969, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.785156, 70.466207 ], [ 159.697266, 69.748551 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.003906, 69.687618 ], [ 165.937500, 69.472969 ], [ 167.783203, 69.595890 ], [ 169.541016, 68.720441 ], [ 170.771484, 69.037142 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.583984, 69.839622 ], [ 175.693359, 69.900118 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.363281, 64.623877 ], [ 178.242188, 64.091408 ], [ 178.857422, 63.273182 ], [ 179.296875, 62.995158 ], [ 179.472656, 62.593341 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.552857 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.689872 ], [ 170.683594, 60.370429 ], [ 170.244141, 59.888937 ], [ 168.837891, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.761719, 60.196156 ], [ 164.794922, 59.756395 ], [ 163.476562, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 161.982422, 57.844751 ], [ 163.125000, 57.657158 ], [ 163.037109, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.630859, 55.329144 ], [ 162.070312, 54.876607 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.225768 ], [ 158.466797, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.708984, 51.013755 ], [ 156.357422, 51.727028 ], [ 155.390625, 55.429013 ], [ 155.830078, 56.800878 ], [ 156.708984, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.291016, 58.077876 ], [ 160.136719, 59.355596 ], [ 161.806641, 60.370429 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.212891, 62.471724 ], [ 162.597656, 61.648162 ], [ 160.048828, 60.586967 ], [ 159.257812, 61.814664 ], [ 156.708984, 61.438767 ], [ 154.160156, 59.800634 ], [ 155.039062, 59.175928 ], [ 152.753906, 58.904646 ], [ 151.259766, 58.813742 ], [ 151.259766, 59.534318 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.119141, 59.040555 ], [ 135.087891, 54.775346 ], [ 136.669922, 54.622978 ], [ 137.109375, 54.007769 ], [ 138.164062, 53.800651 ], [ 138.779297, 54.265224 ], [ 139.833984, 54.213861 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.537109, 51.289406 ], [ 140.449219, 50.064192 ], [ 140.009766, 48.458352 ], [ 138.515625, 47.040182 ], [ 138.164062, 46.316584 ], [ 134.824219, 43.452919 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.325178 ], [ 130.869141, 42.553080 ], [ 130.693359, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 46.619261 ], [ 49.042969, 46.437857 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.653024 ], [ 47.548828, 43.707594 ], [ 47.460938, 43.004647 ], [ 48.515625, 41.836828 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 39.902344, 43.452919 ], [ 38.671875, 44.339565 ], [ 37.529297, 44.715514 ], [ 36.650391, 45.274886 ], [ 37.353516, 45.460131 ], [ 38.232422, 46.255847 ], [ 37.617188, 46.679594 ], [ 39.111328, 47.100045 ], [ 39.111328, 47.279229 ], [ 38.144531, 47.159840 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 31.025391, 69.565226 ], [ 32.080078, 69.930300 ], [ 33.750000, 69.318320 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.474922 ], [ 41.044922, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.320312, 66.018018 ], [ 33.837891, 66.791909 ], [ 33.134766, 66.652977 ], [ 34.804688, 65.910623 ], [ 34.892578, 64.434892 ], [ 37.001953, 63.860036 ], [ 37.089844, 64.358931 ], [ 36.474609, 64.774125 ], [ 37.089844, 65.146115 ], [ 39.550781, 64.548440 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.011719, 66.478208 ], [ 42.978516, 66.443107 ], [ 43.945312, 66.089364 ], [ 44.472656, 66.757250 ], [ 43.681641, 67.373698 ], [ 44.121094, 67.974634 ], [ 43.417969, 68.592487 ], [ 46.230469, 68.269387 ], [ 46.757812, 67.709445 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.033163 ], [ 46.318359, 66.687784 ], [ 47.812500, 66.895596 ], [ 48.076172, 67.542167 ], [ 53.701172, 68.879358 ], [ 54.404297, 68.815927 ], [ 53.437500, 68.204212 ], [ 54.667969, 68.106102 ], [ 55.371094, 68.463800 ], [ 57.304688, 68.496040 ], [ 58.798828, 68.911005 ], [ 59.941406, 68.301905 ], [ 60.996094, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.468750, 69.869892 ], [ 63.457031, 69.565226 ], [ 64.863281, 69.256149 ], [ 68.466797, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.162558 ], [ 68.115234, 69.380313 ], [ 66.884766, 69.472969 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.728979 ], [ 66.621094, 71.045529 ], [ 68.466797, 71.938158 ], [ 69.169922, 72.867930 ], [ 69.873047, 73.048236 ], [ 72.509766, 72.790088 ], [ 72.773438, 72.235514 ], [ 71.806641, 71.413177 ], [ 72.421875, 71.102543 ], [ 72.773438, 70.407348 ], [ 72.509766, 69.037142 ], [ 73.652344, 68.431513 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.196009 ], [ 72.773438, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.305976 ], [ 74.970703, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.882812, 69.005675 ], [ 73.828125, 69.099940 ], [ 73.564453, 69.657086 ], [ 74.355469, 70.641769 ], [ 73.037109, 71.469124 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.867930 ], [ 75.673828, 72.315785 ], [ 75.234375, 71.357067 ], [ 76.289062, 71.159391 ], [ 75.849609, 71.883578 ], [ 77.519531, 72.289067 ], [ 79.628906, 72.342464 ], [ 81.474609, 71.773941 ], [ 80.595703, 72.607120 ], [ 80.507812, 73.652545 ], [ 82.177734, 73.873717 ], [ 84.638672, 73.824820 ], [ 86.748047, 73.946791 ], [ 85.957031, 74.472903 ], [ 87.099609, 75.118222 ], [ 88.242188, 75.163300 ], [ 90.175781, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.164062, 76.058508 ], [ 95.800781, 76.142958 ], [ 96.591797, 75.930885 ], [ 98.876953, 76.455203 ], [ 100.722656, 76.434604 ], [ 100.986328, 76.880775 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.711590 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.173828, 52.749594 ], [ 143.173828, 51.781436 ], [ 143.613281, 50.792047 ], [ 144.580078, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.437500, 46.195042 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.012224 ], [ 141.855469, 46.860191 ], [ 141.943359, 47.813155 ], [ 141.855469, 48.864715 ], [ 142.119141, 49.667628 ], [ 142.119141, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.330873 ], [ 142.558594, 53.800651 ], [ 142.207031, 54.265224 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.626953, 68.204212 ], [ -174.990234, 67.238062 ], [ -175.078125, 66.618122 ], [ -174.375000, 66.337505 ], [ -174.638672, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.980469, 65.982270 ], [ -170.947266, 65.549367 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.472794 ], [ -172.968750, 64.282760 ], [ -173.935547, 64.282760 ], [ -174.726562, 64.661517 ], [ -176.044922, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.275391, 65.549367 ], [ -178.417969, 65.403445 ], [ -178.945312, 65.766727 ], [ -178.769531, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.440002 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 61.523438, 75.275413 ], [ 58.447266, 74.331108 ], [ 55.371094, 72.395706 ], [ 55.546875, 71.552741 ], [ 57.480469, 70.728979 ], [ 56.865234, 70.641769 ], [ 53.613281, 70.786910 ], [ 53.349609, 71.216075 ], [ 51.591797, 71.497037 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.382812, 72.790088 ], [ 54.404297, 73.627789 ], [ 53.437500, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.546875, 75.095633 ], [ 57.832031, 75.628632 ], [ 61.083984, 76.268695 ], [ 64.423828, 76.455203 ], [ 66.181641, 76.820793 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 71.580532 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 143.437500, 73.478485 ], [ 143.525391, 73.226700 ], [ 142.031250, 73.226700 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.873717 ] ] ], [ [ [ 138.779297, 76.142958 ], [ 141.416016, 76.100796 ], [ 145.019531, 75.563041 ], [ 144.228516, 74.821934 ], [ 140.537109, 74.867889 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.275413 ], [ 137.460938, 75.952235 ], [ 138.779297, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.364506 ], [ 150.644531, 75.095633 ], [ 149.501953, 74.706450 ], [ 147.919922, 74.798906 ], [ 146.074219, 75.185789 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.041016, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.292969, 78.716316 ], [ 105.029297, 78.313860 ], [ 99.404297, 77.934055 ], [ 101.250000, 79.237185 ], [ 102.041016, 79.351472 ] ] ], [ [ [ 95.888672, 81.255032 ], [ 97.822266, 80.760615 ], [ 100.107422, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.055137 ], [ 93.251953, 79.432371 ], [ 92.460938, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.691406, 81.024916 ], [ 95.888672, 81.255032 ] ] ], [ [ [ 50.009766, 80.928426 ], [ 51.503906, 80.703997 ], [ 51.064453, 80.560943 ], [ 48.867188, 80.342262 ], [ 48.691406, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.021484, 80.560943 ], [ 44.824219, 80.604086 ], [ 46.757812, 80.774716 ], [ 48.251953, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.042969, 80.760615 ], [ 50.009766, 80.928426 ] ] ] ] } } ] } ] } , @@ -29,6 +27,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.075195, 3.513421 ], [ -51.064453, 3.513421 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.763672, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -148.095703, -79.647774 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -61.171875, -79.974243 ], [ -60.644531, -79.624056 ] ] ] ] } } ] } ] } , @@ -52,6 +52,8 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } @@ -80,6 +82,12 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } @@ -102,6 +110,12 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.600098, -65.802776 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -68.466797, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.600098, -65.802776 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } @@ -109,6 +123,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.807617, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -57.875977, -31.015279 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ] } } ] } ] } , @@ -136,8 +152,16 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ], [ [ [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.307617, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ] ] ], [ [ [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, 1.757537 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.717773, 1.757537 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } @@ -190,8 +214,16 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.307617, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ] ] ], [ [ [ 92.592773, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ] ] ], [ [ [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ] ] ], [ [ [ 99.360352, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.360352, -67.204032 ] ] ], [ [ [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ] ] ], [ [ [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.118164, -67.204032 ], [ 120.673828, -67.204032 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.741211, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } @@ -218,6 +250,18 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.467529, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.281250, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ] ] ], [ [ [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.905273, -79.004962 ], [ -159.576416, -79.004962 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.347900, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.281250, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ] ] } } @@ -244,6 +288,18 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.419877 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.557792 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -115.993652, 32.620870 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.222412, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } @@ -272,11 +328,25 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.186207 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.350342, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.350342, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.764648, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.368784 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.950928, -66.160511 ], [ -62.171631, -66.160511 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ], [ -62.666016, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -64.995117, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.764648, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ] } } ] } ] } , @@ -342,6 +412,18 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.787779 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -43.549805, -79.004962 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.549805, -79.004962 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ] ] ], [ [ [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.102051, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -18.918457, -75.436505 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.878906, -1.186439 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.574057 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ] ] ] } } @@ -388,6 +470,18 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.771870 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.771870 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.906250, -10.919618 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.775879, 0.878872 ], [ 29.992676, 0.878872 ] ] ] } } @@ -492,6 +586,24 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.887207, -66.160511 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.265319 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.163086, -66.160511 ], [ 56.887207, -66.160511 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.722168, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ] ] ], [ [ [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.484131, -66.861082 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.583776 ], [ 44.121094, -17.151288 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } @@ -554,6 +666,24 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.063232, -66.513260 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.676025, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.780273, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.063232, -66.513260 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.929443, -66.861082 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.684570, -66.861082 ], [ 122.310791, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.793701, 0.878872 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.671875, 0.878872 ] ] ] ] } } @@ -600,8 +730,22 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.751709, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.751709, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.780273, -66.160511 ], [ 135.966797, -66.160511 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 144.371338, -66.835165 ], [ 144.711914, -66.861082 ], [ 140.130615, -66.861082 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.986084, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ] } } ] } ] } @@ -636,6 +780,24 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.575684, -85.051129 ], [ -162.301025, -85.088894 ], [ -180.000000, -85.088894 ], [ -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": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.487793, -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.118032 ], [ -157.060547, -77.270224 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "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.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } @@ -670,6 +832,24 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.585815, -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.885742, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.885742, -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.275757, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.852295, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.193604, -79.253586 ], [ -153.275757, -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.076752 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.118032 ], [ -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": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "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.294493 ], [ -157.939453, 21.652323 ] ] ] ] } } @@ -698,6 +878,30 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.610530 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.646932 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.341490 ], [ -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.878540, -74.019543 ], [ -114.505005, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.531250, -73.898111 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.531250, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.515747, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.878540, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.976196, -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": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "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.222412, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.189453, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } @@ -734,6 +938,30 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.382950 ], [ -112.500000, -74.610530 ], [ -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": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.245712 ], [ -89.560547, -72.858219 ], [ -89.560547, -74.140084 ], [ -101.997070, -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": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 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.110125 ], [ -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.844238, 22.350076 ] ] ] } } @@ -782,6 +1010,30 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.843825 ], [ -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.250854, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.772419 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.342036 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.245712 ], [ -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.549557 ], [ -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.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.772419 ] ] ], [ [ [ -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": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.922974, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.016113, -55.528631 ], [ -67.922974, -55.528631 ] ] ] } } @@ -898,9 +1150,35 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.073486, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.942383, -82.676285 ], [ -55.629272, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.073486, -82.676285 ], [ -58.958130, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.255493, -82.732092 ], [ -55.942383, -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.560547, -79.088462 ], [ -44.560547, -80.274756 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.357916 ], [ -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.350342, -79.171335 ], [ -50.251465, -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": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.465698, -79.253586 ], [ -50.350342, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.100464, -73.898111 ], [ -61.259766, -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.843825 ], [ -67.939453, -75.920199 ], [ -67.939453, -73.898111 ], [ -61.100464, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.550659, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.764648, -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.259766, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.435547, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.783586 ], [ -67.500000, -72.549557 ], [ -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.912981 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.874030 ], [ -66.588135, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.922974, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.922974, -55.528631 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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 ], [ -61.298218, -64.543718 ], [ -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.764648, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -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 ] ] ] } } ] } ] } , @@ -1002,6 +1280,24 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.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.489380, -79.088462 ], [ -43.467407, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.006183 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.467407, -79.171335 ], [ -43.445435, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.006183 ] ] ], [ [ [ -22.060547, -76.041292 ], [ -22.060547, -79.253586 ], [ -35.793457, -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.108711 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.041292 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.880127, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.957031, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.574057 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.880127, -21.534847 ] ] ] } } @@ -1048,6 +1344,30 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.149535 ], [ -22.500000, -76.108711 ], [ -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.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.568378 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.803833, -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": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "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.556885, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ] ] ] } } @@ -1140,6 +1460,30 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.435925 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.568378 ], [ 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": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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 ] ] ] } } @@ -1306,6 +1650,30 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.896221 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.464371 ], [ 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.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -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.262329, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } @@ -1494,6 +1862,36 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.902421 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.244604 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.667244 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.142942 ], [ 45.000000, -68.021966 ], [ 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.976562, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.271729, -66.687784 ], [ 50.855713, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.208008, -21.534847 ], [ 48.076172, -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.208008, -21.534847 ] ] ] } } @@ -1594,6 +1992,36 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.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.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.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 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": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.983765, 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.510498, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } @@ -1662,6 +2090,36 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.176348 ], [ 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.502686, -66.337505 ], [ 104.924927, -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.791626, -66.513260 ], [ 111.055298, -66.423340 ], [ 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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.063232, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.939453, -66.687784 ], [ 110.269775, -66.687784 ], [ 110.791626, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.104945 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.069318 ], [ 112.939453, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "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.915521 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.363693 ], [ 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.276978, 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.173584, 0.439449 ], [ 103.276978, 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.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } @@ -1742,6 +2200,36 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.180664, -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.887573, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.409424, -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.177002, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.390503, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.104945 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 116.768188, -66.687784 ], [ 115.938721, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ] ] ], [ [ [ 123.409424, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.821167, -66.687784 ], [ 122.052612, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.887573, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.409424, -66.513260 ] ] ], [ [ [ 128.133545, -66.687784 ], [ 125.348511, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.133545, -66.687784 ] ] ], [ [ [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.160767, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.177002, -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.775744 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 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.576416, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.361938, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } @@ -1810,6 +2298,36 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.505127, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.227029 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.991577, -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 ] ] ] } } @@ -1866,6 +2384,30 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.910522, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.751709, -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.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.832642, -73.898111 ], [ 167.629395, -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.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "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 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.864136, -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.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.094604, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } @@ -1896,6 +2438,18 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.664612, -83.956169 ], [ -169.571228, -83.979259 ], [ -169.002686, -84.117659 ], [ -168.750000, -84.181769 ], [ -168.530273, -84.237190 ], [ -168.530273, -85.070048 ], [ -180.000000, -85.070048 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139294 ], [ -177.258911, -84.452865 ], [ -177.140808, -84.417709 ], [ -176.086121, -84.099052 ], [ -175.948792, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.383240, -84.534302 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060808 ], [ -171.518555, -83.979259 ], [ -171.134033, -83.956169 ], [ -169.664612, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.571228, -83.979259 ], [ -169.477844, -84.002262 ], [ -171.903076, -84.002262 ], [ -171.518555, -83.979259 ], [ -169.953003, -83.884610 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.794006, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.554594 ], [ -180.000000, -16.066929 ], [ -179.794006, -16.019416 ] ] ] } } @@ -1922,6 +2476,24 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.969727, -84.125535 ], [ -168.750000, -84.181769 ], [ -168.530273, -84.237190 ], [ -167.022400, -84.570286 ], [ -164.182434, -84.825066 ], [ -162.575684, -85.051129 ], [ -162.435608, -85.070048 ], [ -168.969727, -85.070048 ], [ -168.969727, -84.125535 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.433594, -79.129976 ], [ -159.408875, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.128235, -79.633945 ], [ -162.441101, -79.281206 ], [ -162.627869, -79.171335 ], [ -162.696533, -79.129976 ], [ -159.433594, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222831 ], [ -161.246338, -78.379877 ], [ -160.246582, -78.693184 ], [ -159.483032, -79.046269 ], [ -159.408875, -79.171335 ], [ -159.384155, -79.212538 ], [ -162.556458, -79.212538 ], [ -162.627869, -79.171335 ], [ -163.028870, -78.928746 ], [ -163.067322, -78.869518 ], [ -163.715515, -78.595299 ], [ -163.108521, -78.222831 ] ] ], [ [ [ -158.365173, -76.888876 ], [ -157.876282, -76.986954 ], [ -157.500000, -77.118644 ], [ -157.280273, -77.194959 ], [ -157.280273, -78.372683 ], [ -157.500000, -78.274853 ], [ -158.052063, -78.025574 ], [ -158.365173, -76.888876 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 21.171606 ], [ -157.280273, 21.097313 ], [ -157.326965, 21.099875 ], [ -157.280273, 21.171606 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.942200, 21.654875 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.780151, 21.279137 ], [ -158.128967, 21.314964 ], [ -158.255310, 21.539957 ], [ -158.293762, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.362183, 22.146708 ], [ -159.345703, 21.983801 ], [ -159.392395, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.735718, 22.146708 ], [ -159.362183, 22.146708 ] ] ] ] } } @@ -1964,6 +2536,42 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -83.956169 ], [ -146.030273, -84.539009 ], [ -146.250000, -84.536918 ], [ -146.829529, -84.531162 ], [ -150.062256, -84.295908 ], [ -150.746155, -83.979259 ], [ -150.795593, -83.956169 ], [ -146.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -82.648222 ], [ -146.030273, -84.002262 ], [ -150.699463, -84.002262 ], [ -150.746155, -83.979259 ], [ -150.905457, -83.904183 ], [ -153.588867, -83.688427 ], [ -153.410339, -83.237720 ], [ -153.039551, -82.826337 ], [ -152.885742, -82.676285 ], [ -152.858276, -82.648222 ], [ -146.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -81.059130 ], [ -146.030273, -82.704241 ], [ -152.915955, -82.704241 ], [ -152.885742, -82.676285 ], [ -152.666016, -82.454176 ], [ -152.863770, -82.042319 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.838074, -81.101715 ], [ -154.410095, -81.160574 ], [ -153.407593, -81.093214 ], [ -152.904968, -81.059130 ], [ -151.864014, -81.059130 ], [ -151.715698, -81.093214 ], [ -150.650024, -81.336913 ], [ -149.164124, -81.093214 ], [ -148.960876, -81.059130 ], [ -146.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -156.838074, -81.101715 ], [ -155.805359, -81.127169 ], [ -156.717224, -81.127169 ], [ -156.838074, -81.101715 ] ] ], [ [ [ -151.715698, -81.093214 ], [ -151.570129, -81.127169 ], [ -153.910217, -81.127169 ], [ -153.407593, -81.093214 ], [ -152.100220, -81.003896 ], [ -151.715698, -81.093214 ] ] ], [ [ [ -146.030273, -81.127169 ], [ -149.370117, -81.127169 ], [ -149.164124, -81.093214 ], [ -148.867493, -81.043322 ], [ -147.222290, -80.670662 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.065491, -79.651722 ], [ -149.532166, -79.358068 ], [ -151.589355, -79.299070 ], [ -153.273010, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.031067, -79.129976 ], [ -146.030273, -79.129976 ], [ -146.030273, -81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -76.790701 ], [ -146.030273, -79.212538 ], [ -152.734680, -79.212538 ], [ -153.273010, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063999 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.719727, -78.176211 ], [ -157.719727, -77.041882 ], [ -157.500000, -77.118644 ], [ -156.975403, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.745422, -77.065265 ], [ -152.921448, -77.496391 ], [ -151.333923, -77.398495 ], [ -150.004578, -77.182779 ], [ -148.749390, -76.908799 ], [ -148.515930, -76.840816 ], [ -148.342896, -76.790701 ], [ -146.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, -75.356870 ], [ -146.030273, -76.890745 ], [ -148.686218, -76.890745 ], [ -148.515930, -76.840816 ], [ -147.615051, -76.575609 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.993510 ], [ -146.497192, -75.732565 ], [ -146.250000, -75.437887 ], [ -146.203308, -75.379765 ], [ -146.030273, -75.356870 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.249314 ], [ -155.404358, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.063782, 19.859727 ], [ -154.808350, 19.510609 ], [ -154.833069, 19.453644 ], [ -155.223083, 19.241143 ], [ -155.544434, 19.085480 ], [ -155.690002, 18.916680 ], [ -155.937195, 19.059522 ], [ -155.909729, 19.339653 ], [ -156.074524, 19.704658 ], [ -156.025085, 19.815806 ], [ -155.852051, 19.978511 ], [ -155.920715, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.612854, 21.012727 ], [ -156.258545, 20.917831 ], [ -155.997620, 20.766387 ], [ -156.080017, 20.645636 ], [ -156.415100, 20.573653 ], [ -156.588135, 20.784363 ], [ -156.703491, 20.866511 ], [ -156.711731, 20.928093 ], [ -156.612854, 21.012727 ] ] ], [ [ [ -157.252808, 21.220261 ], [ -156.758423, 21.179290 ], [ -156.791382, 21.069123 ], [ -157.326965, 21.099875 ], [ -157.252808, 21.220261 ] ] ], [ [ [ -157.719727, 21.399377 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.719727, 21.268900 ], [ -157.719727, 21.399377 ] ] ] ] } } @@ -1994,6 +2602,42 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -83.956169 ], [ -134.780273, -85.070048 ], [ -143.399048, -85.070048 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570286 ], [ -146.250000, -84.536918 ], [ -146.469727, -84.534825 ], [ -146.469727, -83.956169 ], [ -134.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -82.648222 ], [ -134.780273, -84.002262 ], [ -146.469727, -84.002262 ], [ -146.469727, -82.648222 ], [ -134.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -81.059130 ], [ -134.780273, -82.704241 ], [ -146.469727, -82.704241 ], [ -146.469727, -81.059130 ], [ -134.780273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -79.129976 ], [ -134.780273, -81.127169 ], [ -146.469727, -81.127169 ], [ -146.469727, -80.359755 ], [ -146.420288, -80.337653 ], [ -146.469727, -80.278004 ], [ -146.469727, -79.129976 ], [ -134.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, -76.790701 ], [ -134.780273, -79.212538 ], [ -146.469727, -79.212538 ], [ -146.469727, -76.790701 ], [ -134.780273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.216980, -74.302152 ], [ -135.000000, -74.318493 ], [ -134.780273, -74.334817 ], [ -134.780273, -76.890745 ], [ -146.469727, -76.890745 ], [ -146.469727, -76.501441 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.993510 ], [ -146.469727, -75.760967 ], [ -146.469727, -75.701395 ], [ -146.250000, -75.437887 ], [ -146.203308, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.324646, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.086446 ], [ -140.210266, -75.066641 ], [ -138.858948, -74.968655 ], [ -137.507629, -74.733232 ], [ -136.430969, -74.517689 ], [ -135.216980, -74.302152 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 61.710706 ], [ -134.780273, 59.171706 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.477905, 59.788198 ], [ -136.480408, 59.464617 ], [ -137.452698, 58.906064 ], [ -138.342590, 59.562158 ], [ -139.040222, 60.000359 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.306546 ], [ -140.998535, 61.710706 ], [ -134.780273, 61.710706 ] ] ] } } @@ -2018,6 +2662,48 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -83.956169 ], [ -123.530273, -85.070048 ], [ -135.219727, -85.070048 ], [ -135.219727, -83.956169 ], [ -123.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -82.648222 ], [ -123.530273, -84.002262 ], [ -135.219727, -84.002262 ], [ -135.219727, -82.648222 ], [ -123.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -81.059130 ], [ -123.530273, -82.704241 ], [ -135.219727, -82.704241 ], [ -135.219727, -81.059130 ], [ -123.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -79.129976 ], [ -123.530273, -81.127169 ], [ -135.219727, -81.127169 ], [ -135.219727, -79.129976 ], [ -123.530273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, -76.790701 ], [ -123.530273, -79.212538 ], [ -135.219727, -79.212538 ], [ -135.219727, -76.790701 ], [ -123.530273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -132.258911, -74.302152 ], [ -130.926819, -74.478784 ], [ -129.556274, -74.458927 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.517689 ], [ -124.013672, -74.478784 ], [ -123.750000, -74.482458 ], [ -123.530273, -74.485397 ], [ -123.530273, -76.890745 ], [ -135.219727, -76.890745 ], [ -135.219727, -74.302895 ], [ -135.216980, -74.302152 ], [ -135.000000, -74.318493 ], [ -134.431458, -74.360753 ], [ -133.747559, -74.439782 ], [ -132.258911, -74.302152 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.559753, -73.245712 ], [ -125.559998, -73.480828 ], [ -124.032898, -73.872954 ], [ -124.620667, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.284851, -73.461293 ], [ -126.559753, -73.245712 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 41.145570 ], [ -123.530273, 38.741231 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.087436 ], [ -123.865356, 39.768436 ], [ -124.398193, 40.315138 ], [ -124.222412, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.181213, 41.145570 ], [ -123.530273, 41.145570 ] ] ] } } @@ -2072,6 +2758,48 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -83.956169 ], [ -112.280273, -85.070048 ], [ -123.969727, -85.070048 ], [ -123.969727, -83.956169 ], [ -112.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -82.648222 ], [ -112.280273, -84.002262 ], [ -123.969727, -84.002262 ], [ -123.969727, -82.648222 ], [ -112.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -81.059130 ], [ -112.280273, -82.704241 ], [ -123.969727, -82.704241 ], [ -123.969727, -81.059130 ], [ -112.280273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -79.129976 ], [ -112.280273, -81.127169 ], [ -123.969727, -81.127169 ], [ -123.969727, -79.129976 ], [ -112.280273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, -76.790701 ], [ -112.280273, -79.212538 ], [ -123.969727, -79.212538 ], [ -123.969727, -76.790701 ], [ -112.280273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.444824, -73.958939 ], [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -112.947693, -74.380731 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -112.280273, -74.708623 ], [ -112.280273, -76.890745 ], [ -123.969727, -76.890745 ], [ -123.969727, -74.479519 ], [ -123.750000, -74.482458 ], [ -121.074829, -74.517689 ], [ -119.704285, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027859 ], [ -116.218872, -74.243338 ], [ -115.024109, -74.067112 ], [ -114.875793, -74.019543 ], [ -114.689026, -73.958939 ], [ -113.444824, -73.958939 ] ] ], [ [ [ -119.753723, -73.958939 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.088210 ], [ -121.462097, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.772461, -73.958939 ], [ -119.753723, -73.958939 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.406921, -73.323918 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.726501, -73.480828 ], [ -119.292297, -73.833999 ], [ -119.976196, -74.019543 ], [ -120.201416, -74.079925 ], [ -120.390930, -74.079925 ], [ -121.462097, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.406921, -73.323918 ] ] ], [ [ [ -117.471313, -74.027859 ], [ -117.171936, -74.079925 ], [ -117.869568, -74.079925 ], [ -117.471313, -74.027859 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -113.247070, -74.079925 ], [ -115.106506, -74.079925 ], [ -115.024109, -74.067112 ], [ -114.875793, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 32.138409 ], [ -112.280273, 31.723495 ], [ -112.500000, 31.791221 ], [ -113.024597, 31.952162 ], [ -113.307495, 32.040677 ], [ -113.615112, 32.138409 ], [ -112.280273, 32.138409 ] ] ] } } @@ -2140,6 +2868,48 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -83.956169 ], [ -101.030273, -85.070048 ], [ -112.719727, -85.070048 ], [ -112.719727, -83.956169 ], [ -101.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -82.648222 ], [ -101.030273, -84.002262 ], [ -112.719727, -84.002262 ], [ -112.719727, -82.648222 ], [ -101.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -81.059130 ], [ -101.030273, -82.704241 ], [ -112.719727, -82.704241 ], [ -112.719727, -81.059130 ], [ -101.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -79.129976 ], [ -101.030273, -81.127169 ], [ -112.719727, -81.127169 ], [ -112.719727, -79.129976 ], [ -101.030273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, -76.790701 ], [ -101.030273, -79.212538 ], [ -112.719727, -79.212538 ], [ -112.719727, -76.790701 ], [ -101.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -101.030273, -75.252357 ], [ -101.030273, -76.890745 ], [ -112.719727, -76.890745 ], [ -112.719727, -74.497881 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -111.261292, -74.419877 ], [ -110.066528, -74.792423 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.878235, -74.948697 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -101.250000, -75.224364 ], [ -101.030273, -75.252357 ] ] ], [ [ [ -101.030273, -74.345937 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -102.546387, -74.106272 ], [ -102.680969, -74.019543 ], [ -102.774353, -73.958939 ], [ -101.030273, -73.958939 ], [ -101.030273, -74.345937 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -101.250000, -72.796588 ], [ -101.030273, -72.786837 ], [ -101.030273, -74.079925 ], [ -102.587585, -74.079925 ], [ -102.680969, -74.019543 ], [ -103.114929, -73.734289 ], [ -103.329163, -73.361708 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -101.250000, -71.766208 ], [ -101.030273, -71.790256 ], [ -101.030273, -72.453760 ], [ -101.250000, -72.411482 ], [ -101.802063, -72.304936 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 22.146708 ], [ -101.030273, 17.287709 ], [ -101.250000, 17.413546 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.918636 ], [ -102.480469, 17.976121 ], [ -103.502197, 18.294558 ], [ -103.919678, 18.750310 ], [ -104.993591, 19.316327 ], [ -105.493469, 19.947533 ], [ -105.732422, 20.434734 ], [ -105.400085, 20.532505 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.076812 ], [ -105.268250, 21.422390 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.666504, 22.146708 ], [ -101.030273, 22.146708 ] ] ] } } @@ -2220,6 +2990,48 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -83.956169 ], [ -89.780273, -85.070048 ], [ -101.469727, -85.070048 ], [ -101.469727, -83.956169 ], [ -89.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -82.648222 ], [ -89.780273, -84.002262 ], [ -101.469727, -84.002262 ], [ -101.469727, -82.648222 ], [ -89.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -81.059130 ], [ -89.780273, -82.704241 ], [ -101.469727, -82.704241 ], [ -101.469727, -81.059130 ], [ -89.780273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -79.129976 ], [ -89.780273, -81.127169 ], [ -101.469727, -81.127169 ], [ -101.469727, -79.129976 ], [ -89.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -76.790701 ], [ -89.780273, -79.212538 ], [ -101.469727, -79.212538 ], [ -101.469727, -76.790701 ], [ -89.780273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, -73.958939 ], [ -89.780273, -76.890745 ], [ -101.469727, -76.890745 ], [ -101.469727, -75.195618 ], [ -101.250000, -75.224364 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.763855, -74.537473 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -101.469727, -74.171579 ], [ -101.469727, -73.958939 ], [ -89.780273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -100.313416, -72.754296 ], [ -99.137878, -72.910759 ], [ -98.118896, -73.205286 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.616172 ], [ -95.045471, -73.479266 ], [ -93.674927, -73.283674 ], [ -92.441711, -73.165560 ], [ -91.422729, -73.400984 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.245712 ], [ -89.780273, -73.053041 ], [ -89.780273, -74.079925 ], [ -101.469727, -74.079925 ], [ -101.469727, -72.807146 ], [ -101.250000, -72.796588 ], [ -100.313416, -72.754296 ] ] ], [ [ [ -101.469727, -71.742990 ], [ -101.250000, -71.766208 ], [ -100.431519, -71.854518 ], [ -98.984070, -71.933048 ], [ -97.885437, -72.070530 ], [ -96.789551, -71.952629 ], [ -96.201782, -72.520707 ], [ -96.984558, -72.442164 ], [ -98.198547, -72.481891 ], [ -99.434509, -72.442164 ], [ -100.785828, -72.500896 ], [ -101.250000, -72.411482 ], [ -101.469727, -72.369105 ], [ -101.469727, -71.742990 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.778320, 22.146708 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.391052, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.893306 ], [ -96.292419, 19.321511 ], [ -95.902405, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.551331, 18.424896 ], [ -92.787781, 18.526492 ], [ -92.037964, 18.706090 ], [ -91.408997, 18.877702 ], [ -90.774536, 19.285221 ], [ -90.535583, 19.867477 ], [ -90.453186, 20.709877 ], [ -90.280151, 20.999907 ], [ -90.000000, 21.110125 ], [ -89.780273, 21.194655 ], [ -89.780273, 17.816686 ], [ -90.000000, 17.819301 ], [ -91.002502, 17.819301 ], [ -91.002502, 17.256236 ], [ -91.455688, 17.253613 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.601501, 16.472963 ], [ -90.439453, 16.412375 ], [ -90.466919, 16.069568 ], [ -91.749573, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.205505, 14.830646 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.875427, 15.940202 ], [ -94.693909, 16.201488 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.752606 ], [ -96.558838, 15.654776 ], [ -97.264709, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.698181, 16.707232 ], [ -100.829773, 17.172283 ], [ -101.250000, 17.413546 ], [ -101.469727, 17.539297 ], [ -101.469727, 22.146708 ], [ -97.778320, 22.146708 ] ] ] } } @@ -2308,6 +3120,48 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -83.956169 ], [ -78.530273, -85.070048 ], [ -90.219727, -85.070048 ], [ -90.219727, -83.956169 ], [ -78.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -82.648222 ], [ -78.530273, -84.002262 ], [ -90.219727, -84.002262 ], [ -90.219727, -82.648222 ], [ -78.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -81.059130 ], [ -78.530273, -82.704241 ], [ -90.219727, -82.704241 ], [ -90.219727, -81.059130 ], [ -78.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -79.129976 ], [ -78.530273, -81.127169 ], [ -90.219727, -81.127169 ], [ -90.219727, -79.129976 ], [ -78.530273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -76.790701 ], [ -78.530273, -79.212538 ], [ -90.219727, -79.212538 ], [ -90.219727, -76.790701 ], [ -78.530273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, -73.958939 ], [ -78.530273, -76.890745 ], [ -90.219727, -76.890745 ], [ -90.219727, -73.958939 ], [ -78.530273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.228210, -72.558615 ], [ -88.426208, -73.008952 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.087432 ], [ -85.193481, -73.479266 ], [ -83.880615, -73.518273 ], [ -82.666626, -73.636303 ], [ -81.471863, -73.851578 ], [ -80.689087, -73.479266 ], [ -80.296326, -73.126540 ], [ -79.299316, -73.518273 ], [ -78.530273, -73.463638 ], [ -78.530273, -74.079925 ], [ -90.219727, -74.079925 ], [ -90.219727, -73.330222 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.245712 ], [ -89.228210, -72.558615 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 0.219726 ], [ -78.530273, -4.154679 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -79.205933, -4.956879 ], [ -79.626160, -4.453212 ], [ -80.029907, -4.343673 ], [ -80.444641, -4.423090 ], [ -80.469360, -4.058796 ], [ -80.186462, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.654994 ], [ -79.988708, -2.218684 ], [ -80.370483, -2.682430 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.963422 ], [ -80.936279, -1.057374 ], [ -80.584717, -0.906334 ], [ -80.400696, -0.282897 ], [ -80.233154, 0.000000 ], [ -80.104065, 0.219726 ], [ -78.530273, 0.219726 ] ] ] } } @@ -2434,6 +3288,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -83.956169 ], [ -67.280273, -85.070048 ], [ -78.969727, -85.070048 ], [ -78.969727, -83.956169 ], [ -67.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -82.648222 ], [ -67.280273, -84.002262 ], [ -78.969727, -84.002262 ], [ -78.969727, -82.648222 ], [ -67.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.700012, -81.059130 ], [ -69.502258, -81.093214 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.280273, -81.375303 ], [ -67.280273, -82.704241 ], [ -78.969727, -82.704241 ], [ -78.969727, -81.059130 ], [ -69.700012, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.129976 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.259434 ], [ -73.245850, -80.416165 ], [ -71.444092, -80.690233 ], [ -70.015869, -81.003896 ], [ -69.502258, -81.093214 ], [ -69.307251, -81.127169 ], [ -78.969727, -81.127169 ], [ -78.969727, -79.129976 ], [ -78.019409, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.178955, -76.790701 ], [ -77.140503, -76.840816 ], [ -76.929016, -77.104554 ], [ -75.401917, -77.280509 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789705 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.917786, -79.212538 ], [ -78.969727, -79.212538 ], [ -78.969727, -76.790701 ], [ -77.178955, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -73.958939 ], [ -67.280273, -75.806833 ], [ -67.500000, -75.844497 ], [ -68.447571, -76.006799 ], [ -69.798889, -76.222983 ], [ -70.600891, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.242126, -76.712650 ], [ -77.140503, -76.840816 ], [ -77.099304, -76.890745 ], [ -78.969727, -76.890745 ], [ -78.969727, -73.958939 ], [ -76.245117, -73.958939 ], [ -76.223145, -73.968802 ], [ -76.077576, -73.958939 ], [ -67.280273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, -72.318288 ], [ -67.280273, -74.079925 ], [ -78.969727, -74.079925 ], [ -78.969727, -73.494879 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.636303 ], [ -76.223145, -73.968802 ], [ -74.891052, -73.871428 ], [ -73.852844, -73.655637 ], [ -72.833862, -73.400984 ], [ -71.619873, -73.263913 ], [ -70.210876, -73.146459 ], [ -68.936462, -73.008952 ], [ -67.958679, -72.793339 ], [ -67.500000, -72.550381 ], [ -67.370911, -72.480238 ], [ -67.280273, -72.318288 ] ] ], [ [ [ -68.705750, -70.539543 ], [ -68.661804, -70.612614 ], [ -68.453064, -70.955217 ], [ -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.091656 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.366609 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.661071 ], [ -73.916016, -71.269067 ], [ -73.232117, -71.151407 ], [ -72.075806, -71.190411 ], [ -71.781921, -70.680879 ], [ -71.770935, -70.612614 ], [ -71.759949, -70.539543 ], [ -68.705750, -70.539543 ] ] ], [ [ [ -67.280273, -71.601349 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.245239 ], [ -67.917480, -70.853683 ], [ -68.112488, -70.612614 ], [ -68.170166, -70.539543 ], [ -67.280273, -70.539543 ], [ -67.280273, -71.601349 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.254822, -68.878368 ], [ -69.724731, -69.250312 ], [ -69.491272, -69.622685 ], [ -69.060059, -70.074011 ], [ -68.727722, -70.504742 ], [ -68.661804, -70.612614 ], [ -68.617859, -70.685421 ], [ -71.784668, -70.685421 ], [ -71.770935, -70.612614 ], [ -71.724243, -70.308561 ], [ -71.743469, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.254822, -68.878368 ] ] ], [ [ [ -67.280273, -66.902061 ], [ -67.280273, -70.685421 ], [ -68.054810, -70.685421 ], [ -68.112488, -70.612614 ], [ -68.233337, -70.461615 ], [ -68.486023, -70.108616 ], [ -68.546448, -69.717155 ], [ -68.447571, -69.325109 ], [ -67.977905, -68.952473 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.326101 ], [ -67.500000, -67.104861 ], [ -67.280273, -66.902061 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.517892 ], [ -68.634338, -52.634730 ], [ -68.634338, -54.868705 ], [ -67.563171, -54.868705 ], [ -67.500000, -54.871866 ], [ -67.280273, -54.881347 ], [ -67.280273, -55.286937 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.150940, -55.610935 ], [ -68.642578, -55.579897 ], [ -69.233093, -55.497527 ], [ -69.958191, -55.197683 ], [ -71.007385, -55.053203 ], [ -72.265320, -54.493972 ], [ -73.287048, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.046167 ], [ -72.435608, -53.714590 ], [ -71.109009, -54.073894 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.930430 ], [ -69.345703, -52.517892 ] ] ], [ [ [ -72.597656, -48.777913 ], [ -72.649841, -48.877361 ], [ -72.726746, -48.922499 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.378751 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.675576 ], [ -72.331238, -51.424902 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.141917 ], [ -68.573914, -52.298402 ], [ -69.463806, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.007385, -53.833081 ], [ -71.430359, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.704529, -52.834299 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.978943, -51.043121 ], [ -75.481567, -50.376999 ], [ -75.591431, -48.922499 ], [ -75.602417, -48.777913 ], [ -72.597656, -48.777913 ] ] ] ] } } @@ -2614,6 +3516,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -83.956169 ], [ -56.030273, -85.070048 ], [ -67.719727, -85.070048 ], [ -67.719727, -83.956169 ], [ -56.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.133911, -82.648222 ], [ -59.073486, -82.676285 ], [ -58.713684, -82.845861 ], [ -58.224792, -83.218288 ], [ -57.010803, -82.865673 ], [ -56.250000, -82.731397 ], [ -56.030273, -82.692373 ], [ -56.030273, -84.002262 ], [ -67.719727, -84.002262 ], [ -67.719727, -82.648222 ], [ -59.133911, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, -81.347249 ], [ -67.500000, -81.361287 ], [ -65.706482, -81.474408 ], [ -63.256531, -81.748454 ], [ -61.553650, -82.042319 ], [ -59.691467, -82.375504 ], [ -59.073486, -82.676285 ], [ -59.015808, -82.704241 ], [ -67.719727, -82.704241 ], [ -67.719727, -81.347249 ] ] ], [ [ [ -56.030273, -82.704241 ], [ -56.098938, -82.704241 ], [ -56.030273, -82.692373 ], [ -56.030273, -82.704241 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.611572, -79.628507 ], [ -59.573364, -80.040014 ], [ -59.867249, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.256775, -80.862801 ], [ -64.489746, -80.921928 ], [ -65.742188, -80.588380 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255715 ], [ -64.039307, -80.294687 ], [ -61.885986, -80.392815 ], [ -61.141663, -79.980935 ], [ -60.611572, -79.628507 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.177368, -73.958939 ], [ -61.259766, -74.019543 ], [ -61.377869, -74.106272 ], [ -61.965637, -74.439782 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.355164, -75.262841 ], [ -65.863037, -75.634766 ], [ -67.195129, -75.791336 ], [ -67.500000, -75.844497 ], [ -67.719727, -75.882732 ], [ -67.719727, -73.958939 ], [ -61.177368, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.059021, -70.539543 ], [ -61.954651, -70.612614 ], [ -61.809082, -70.716285 ], [ -61.515198, -71.088305 ], [ -61.377869, -72.009552 ], [ -61.083984, -72.381579 ], [ -61.004333, -72.773828 ], [ -60.691223, -73.165560 ], [ -60.828552, -73.695009 ], [ -61.259766, -74.019543 ], [ -61.342163, -74.079925 ], [ -67.719727, -74.079925 ], [ -67.719727, -72.667773 ], [ -67.500000, -72.550381 ], [ -67.370911, -72.480238 ], [ -67.134705, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.245239 ], [ -67.719727, -71.074056 ], [ -67.719727, -70.539543 ], [ -62.059021, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.806091, -66.425537 ], [ -63.748169, -66.503407 ], [ -63.761902, -66.513260 ], [ -64.294739, -66.836246 ], [ -64.882507, -67.149699 ], [ -65.508728, -67.580955 ], [ -65.665283, -67.952994 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.913969 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.991475 ], [ -62.278748, -70.383387 ], [ -61.954651, -70.612614 ], [ -61.853027, -70.685421 ], [ -67.719727, -70.685421 ], [ -67.719727, -68.684527 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.719727, -67.397989 ], [ -67.719727, -67.307035 ], [ -67.500000, -67.104861 ], [ -67.252808, -66.875109 ], [ -66.703491, -66.582126 ], [ -66.585388, -66.513260 ], [ -66.431580, -66.425537 ], [ -62.806091, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.812805, -63.269476 ], [ -57.225037, -63.525297 ], [ -57.595825, -63.857616 ], [ -58.614807, -64.151347 ], [ -59.046021, -64.367249 ], [ -59.790344, -64.211157 ], [ -60.614319, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.798696 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.484486 ], [ -62.591858, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.806091, -66.424439 ], [ -63.748169, -66.503407 ], [ -63.761902, -66.513260 ], [ -63.904724, -66.600676 ], [ -66.739197, -66.600676 ], [ -66.585388, -66.513260 ], [ -66.058044, -66.209308 ], [ -65.371399, -65.896046 ], [ -64.569397, -65.601609 ], [ -64.176636, -65.170346 ], [ -63.630066, -64.896755 ], [ -63.003845, -64.641528 ], [ -62.042542, -64.582648 ], [ -61.416321, -64.269646 ], [ -60.710449, -64.073400 ], [ -59.889221, -63.955467 ], [ -59.164124, -63.701072 ], [ -58.595581, -63.387831 ], [ -57.812805, -63.269476 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.563171, -54.868705 ], [ -67.500000, -54.871866 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.719727, -55.455499 ], [ -67.719727, -54.868705 ], [ -67.563171, -54.868705 ] ] ] } } @@ -2768,6 +3718,36 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -83.956169 ], [ -44.780273, -85.070048 ], [ -56.469727, -85.070048 ], [ -56.469727, -83.956169 ], [ -44.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -82.648222 ], [ -44.780273, -84.002262 ], [ -56.469727, -84.002262 ], [ -56.469727, -82.770559 ], [ -56.250000, -82.731397 ], [ -55.942383, -82.676285 ], [ -55.785828, -82.648222 ], [ -44.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.274170, -81.709338 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -44.780273, -81.851870 ], [ -44.780273, -82.704241 ], [ -56.098938, -82.704241 ], [ -55.942383, -82.676285 ], [ -55.365601, -82.571561 ], [ -53.621521, -82.258000 ], [ -51.545105, -82.003440 ], [ -49.762573, -81.729116 ], [ -47.274170, -81.709338 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -79.129976 ], [ -44.780273, -80.319196 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.358376 ], [ -46.507874, -80.594217 ], [ -48.386536, -80.829156 ], [ -50.482178, -81.025345 ], [ -52.852478, -80.966455 ], [ -54.165344, -80.633187 ], [ -53.989563, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.350342, -79.171335 ], [ -50.300903, -79.129976 ], [ -44.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.664429, -77.831431 ], [ -45.156555, -78.046640 ], [ -45.000000, -78.101694 ], [ -44.780273, -78.179025 ], [ -44.780273, -79.212538 ], [ -50.408020, -79.212538 ], [ -50.350342, -79.171335 ], [ -49.916382, -78.811044 ], [ -49.309387, -78.458173 ], [ -48.661194, -78.046640 ], [ -48.153076, -78.046640 ], [ -46.664429, -77.831431 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.564331, -31.765537 ], [ -51.830750, -31.952162 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.195029 ], [ -53.374329, -33.767732 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.190063, -31.765537 ], [ -51.564331, -31.765537 ] ] ] } } @@ -2878,6 +3858,36 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -83.956169 ], [ -33.530273, -85.070048 ], [ -45.219727, -85.070048 ], [ -45.219727, -83.956169 ], [ -33.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -82.648222 ], [ -33.530273, -84.002262 ], [ -45.219727, -84.002262 ], [ -45.219727, -82.648222 ], [ -33.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, -81.059130 ], [ -33.530273, -82.704241 ], [ -45.219727, -82.704241 ], [ -45.219727, -81.824576 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -42.810974, -82.081766 ], [ -42.162781, -81.650517 ], [ -40.773010, -81.356748 ], [ -38.246155, -81.336913 ], [ -36.268616, -81.121660 ], [ -36.015930, -81.093214 ], [ -35.716553, -81.059130 ], [ -33.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -33.530273, -79.444453 ], [ -33.681335, -79.456019 ], [ -35.642395, -79.456019 ], [ -35.851135, -79.171335 ], [ -35.881348, -79.129976 ], [ -33.530273, -79.129976 ], [ -33.530273, -79.444453 ] ] ], [ [ [ -43.478394, -79.129976 ], [ -43.467407, -79.171335 ], [ -43.374023, -79.516161 ], [ -43.335571, -80.025752 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.358376 ], [ -45.219727, -80.393274 ], [ -45.219727, -79.129976 ], [ -43.478394, -79.129976 ] ] ], [ [ [ -33.530273, -80.849707 ], [ -33.530273, -81.127169 ], [ -36.318054, -81.127169 ], [ -36.015930, -81.093214 ], [ -34.387207, -80.905879 ], [ -33.750000, -80.864109 ], [ -33.530273, -80.849707 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.219727, -78.037535 ], [ -45.156555, -78.046640 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477940 ], [ -43.492126, -79.085342 ], [ -43.467407, -79.171335 ], [ -43.456421, -79.212538 ], [ -45.219727, -79.212538 ], [ -45.219727, -78.037535 ] ] ], [ [ [ -33.530273, -77.837219 ], [ -33.530273, -79.212538 ], [ -35.820923, -79.212538 ], [ -35.851135, -79.171335 ], [ -35.914307, -79.083781 ], [ -35.779724, -78.338868 ], [ -35.329285, -78.123193 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867851 ], [ -33.530273, -77.837219 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.913086, -21.739091 ], [ -40.946045, -21.935403 ], [ -40.957031, -21.943046 ], [ -41.756287, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.965980 ], [ -44.648438, -23.349821 ], [ -45.000000, -23.574057 ], [ -45.219727, -23.712439 ], [ -45.219727, -21.739091 ], [ -40.913086, -21.739091 ] ] ] } } @@ -2950,6 +3960,42 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -83.956169 ], [ -22.280273, -85.070048 ], [ -33.969727, -85.070048 ], [ -33.969727, -83.956169 ], [ -22.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -82.648222 ], [ -22.280273, -84.002262 ], [ -33.969727, -84.002262 ], [ -33.969727, -82.648222 ], [ -22.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -81.059130 ], [ -22.280273, -82.704241 ], [ -33.969727, -82.704241 ], [ -33.969727, -81.059130 ], [ -22.280273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -79.129976 ], [ -22.280273, -81.127169 ], [ -33.969727, -81.127169 ], [ -33.969727, -80.878489 ], [ -33.750000, -80.864109 ], [ -32.310791, -80.768990 ], [ -30.099792, -80.592421 ], [ -28.550720, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.687805, -79.632462 ], [ -29.687805, -79.259730 ], [ -31.626892, -79.299070 ], [ -33.681335, -79.456019 ], [ -33.969727, -79.456019 ], [ -33.969727, -79.129976 ], [ -22.280273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -76.790701 ], [ -22.280273, -79.212538 ], [ -33.969727, -79.212538 ], [ -33.969727, -77.900134 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867851 ], [ -32.214661, -77.652997 ], [ -31.000671, -77.359487 ], [ -29.783936, -77.065265 ], [ -29.264832, -76.840816 ], [ -29.149475, -76.790701 ], [ -22.280273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, -76.077024 ], [ -22.280273, -76.890745 ], [ -29.380188, -76.890745 ], [ -29.264832, -76.840816 ], [ -28.883057, -76.673455 ], [ -27.512512, -76.496952 ], [ -26.161194, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241939 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -22.280273, -76.077024 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.280273, 65.385147 ], [ -22.500000, 65.409160 ], [ -24.326477, 65.611818 ], [ -23.650818, 66.263540 ], [ -22.500000, 66.374956 ], [ -22.280273, 66.396961 ], [ -22.280273, 65.385147 ] ] ], [ [ [ -22.280273, 64.178876 ], [ -22.280273, 63.905980 ], [ -22.500000, 63.931338 ], [ -22.763672, 63.960291 ], [ -22.500000, 64.079404 ], [ -22.280273, 64.178876 ] ] ], [ [ [ -22.280273, 65.075603 ], [ -22.280273, 64.516552 ], [ -22.500000, 64.566139 ], [ -23.955688, 64.892093 ], [ -22.500000, 65.051285 ], [ -22.280273, 65.075603 ] ] ] ] } } @@ -2998,6 +4044,48 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -83.956169 ], [ -11.030273, -85.070048 ], [ -22.719727, -85.070048 ], [ -22.719727, -83.956169 ], [ -11.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -82.648222 ], [ -11.030273, -84.002262 ], [ -22.719727, -84.002262 ], [ -22.719727, -82.648222 ], [ -11.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -81.059130 ], [ -11.030273, -82.704241 ], [ -22.719727, -82.704241 ], [ -22.719727, -81.059130 ], [ -11.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -79.129976 ], [ -11.030273, -81.127169 ], [ -22.719727, -81.127169 ], [ -22.719727, -79.129976 ], [ -11.030273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -76.790701 ], [ -11.030273, -79.212538 ], [ -22.719727, -79.212538 ], [ -22.719727, -76.790701 ], [ -11.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -73.958939 ], [ -11.030273, -76.890745 ], [ -22.719727, -76.890745 ], [ -22.719727, -76.129796 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -21.225586, -75.908835 ], [ -20.011597, -75.674236 ], [ -18.915710, -75.438577 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.792423 ], [ -15.702209, -74.497881 ], [ -15.408325, -74.106272 ], [ -15.803833, -74.019543 ], [ -16.075745, -73.958939 ], [ -11.030273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, -71.549264 ], [ -11.030273, -74.079925 ], [ -15.529175, -74.079925 ], [ -15.803833, -74.019543 ], [ -16.465759, -73.871428 ], [ -16.114197, -73.459729 ], [ -15.449524, -73.146459 ], [ -14.411316, -72.950264 ], [ -13.312683, -72.715168 ], [ -12.293701, -72.401520 ], [ -11.510925, -72.009552 ], [ -11.250000, -71.761051 ], [ -11.030273, -71.549264 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.809570, 11.393879 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.584106, 11.393879 ], [ -14.809570, 11.393879 ] ] ] } } @@ -3090,6 +4178,48 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -83.956169 ], [ 0.219727, -85.070048 ], [ -11.469727, -85.070048 ], [ -11.469727, -83.956169 ], [ 0.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -82.648222 ], [ 0.219727, -84.002262 ], [ -11.469727, -84.002262 ], [ -11.469727, -82.648222 ], [ 0.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -81.059130 ], [ 0.219727, -82.704241 ], [ -11.469727, -82.704241 ], [ -11.469727, -81.059130 ], [ 0.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -79.129976 ], [ 0.219727, -81.127169 ], [ -11.469727, -81.127169 ], [ -11.469727, -79.129976 ], [ 0.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -76.790701 ], [ 0.219727, -79.212538 ], [ -11.469727, -79.212538 ], [ -11.469727, -76.790701 ], [ 0.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, -73.958939 ], [ 0.219727, -76.890745 ], [ -11.469727, -76.890745 ], [ -11.469727, -73.958939 ], [ 0.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.869202, -70.931901 ], [ -5.792542, -71.029464 ], [ -5.537109, -71.401793 ], [ -4.342346, -71.461266 ], [ -3.051453, -71.284936 ], [ -1.796265, -71.167373 ], [ -0.661926, -71.225801 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.568378 ], [ 0.219727, -71.502266 ], [ 0.219727, -74.079925 ], [ -11.469727, -74.079925 ], [ -11.469727, -71.971339 ], [ -11.250000, -71.761051 ], [ -11.022034, -71.539700 ], [ -10.296936, -71.264657 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.418518, -71.696469 ], [ -7.380066, -71.323674 ], [ -6.869202, -70.931901 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.550110, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.621521, 10.811724 ], [ -8.410034, 10.911527 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.231506, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.578305 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.223267, 8.124491 ], [ -8.280945, 7.689217 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.713713 ], [ -8.926392, 7.310709 ], [ -9.209290, 7.316158 ], [ -9.404297, 7.528596 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.840759, 9.690106 ], [ -11.118164, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } @@ -3180,6 +4310,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -83.956169 ], [ 11.469727, -85.070048 ], [ -0.219727, -85.070048 ], [ -0.219727, -83.956169 ], [ 11.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -82.648222 ], [ 11.469727, -84.002262 ], [ -0.219727, -84.002262 ], [ -0.219727, -82.648222 ], [ 11.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -81.059130 ], [ 11.469727, -82.704241 ], [ -0.219727, -82.704241 ], [ -0.219727, -81.059130 ], [ 11.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -79.129976 ], [ 11.469727, -81.127169 ], [ -0.219727, -81.127169 ], [ -0.219727, -79.129976 ], [ 11.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -76.790701 ], [ 11.469727, -79.212538 ], [ -0.219727, -79.212538 ], [ -0.219727, -76.790701 ], [ 11.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -73.958939 ], [ 11.469727, -76.890745 ], [ -0.219727, -76.890745 ], [ -0.219727, -73.958939 ], [ 11.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.340881, -70.539543 ], [ 10.458984, -70.612614 ], [ 10.816040, -70.833855 ], [ 11.250000, -70.759776 ], [ 11.469727, -70.721726 ], [ 11.469727, -74.079925 ], [ -0.219727, -74.079925 ], [ -0.219727, -71.634262 ], [ 0.000000, -71.568378 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.155334, -70.618084 ], [ 5.199280, -70.612614 ], [ 5.721130, -70.539543 ], [ 10.340881, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.742615, -69.893509 ], [ 8.486938, -70.147827 ], [ 9.522400, -70.011201 ], [ 10.247498, -70.480896 ], [ 10.458984, -70.612614 ], [ 10.574341, -70.685421 ], [ 4.869690, -70.685421 ], [ 5.155334, -70.618084 ], [ 5.199280, -70.612614 ], [ 6.273193, -70.461615 ], [ 7.135620, -70.246460 ], [ 7.742615, -69.893509 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 0.219726 ], [ 11.469727, -3.705300 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.976601 ], [ 10.063477, -2.967727 ], [ 9.404297, -2.141835 ], [ 8.797302, -1.109550 ], [ 8.827515, -0.777259 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.272461, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } @@ -3318,6 +4496,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -83.956169 ], [ 22.719727, -85.070048 ], [ 11.030273, -85.070048 ], [ 11.030273, -83.956169 ], [ 22.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -82.648222 ], [ 22.719727, -84.002262 ], [ 11.030273, -84.002262 ], [ 11.030273, -82.648222 ], [ 22.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -81.059130 ], [ 22.719727, -82.704241 ], [ 11.030273, -82.704241 ], [ 11.030273, -81.059130 ], [ 22.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -79.129976 ], [ 22.719727, -81.127169 ], [ 11.030273, -81.127169 ], [ 11.030273, -79.129976 ], [ 22.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -76.790701 ], [ 22.719727, -79.212538 ], [ 11.030273, -79.212538 ], [ 11.030273, -76.790701 ], [ 22.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -73.958939 ], [ 22.719727, -76.890745 ], [ 11.030273, -76.890745 ], [ 11.030273, -73.958939 ], [ 22.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.219849, -70.539543 ], [ 22.381897, -70.612614 ], [ 22.500000, -70.665426 ], [ 22.568665, -70.696320 ], [ 22.719727, -70.672699 ], [ 22.719727, -74.079925 ], [ 11.030273, -74.079925 ], [ 11.030273, -70.797753 ], [ 11.250000, -70.759776 ], [ 11.953125, -70.638127 ], [ 11.983337, -70.612614 ], [ 12.065735, -70.539543 ], [ 22.219849, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.201599, -69.873672 ], [ 19.259033, -69.893509 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.920471, -70.402742 ], [ 22.381897, -70.612614 ], [ 22.541199, -70.685421 ], [ 11.681213, -70.685421 ], [ 11.953125, -70.638127 ], [ 11.983337, -70.612614 ], [ 12.403564, -70.246460 ], [ 13.422546, -69.971730 ], [ 14.732666, -70.030908 ], [ 15.125427, -70.402742 ], [ 15.946655, -70.030908 ], [ 17.026062, -69.913328 ], [ 18.201599, -69.873672 ] ] ], [ [ [ 22.719727, -70.685421 ], [ 22.642822, -70.685421 ], [ 22.719727, -70.672699 ], [ 22.719727, -70.685421 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -31.765537 ], [ 22.719727, -33.881817 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.890937 ], [ 21.541443, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.069275, -34.793506 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.855286, -34.443159 ], [ 18.424072, -33.995750 ], [ 18.377380, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.609303 ], [ 18.245544, -32.428658 ], [ 18.229065, -31.952162 ], [ 18.223572, -31.765537 ], [ 22.719727, -31.765537 ] ] ] } } @@ -3548,6 +4774,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -83.956169 ], [ 33.969727, -85.070048 ], [ 22.280273, -85.070048 ], [ 22.280273, -83.956169 ], [ 33.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -82.648222 ], [ 33.969727, -84.002262 ], [ 22.280273, -84.002262 ], [ 22.280273, -82.648222 ], [ 33.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -81.059130 ], [ 33.969727, -82.704241 ], [ 22.280273, -82.704241 ], [ 22.280273, -81.059130 ], [ 33.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -79.129976 ], [ 33.969727, -81.127169 ], [ 22.280273, -81.127169 ], [ 22.280273, -79.129976 ], [ 33.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -76.790701 ], [ 33.969727, -79.212538 ], [ 22.280273, -79.212538 ], [ 22.280273, -76.790701 ], [ 33.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -73.958939 ], [ 33.969727, -76.890745 ], [ 22.280273, -76.890745 ], [ 22.280273, -73.958939 ], [ 33.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -70.539543 ], [ 33.969727, -74.079925 ], [ 22.280273, -74.079925 ], [ 22.280273, -70.566062 ], [ 22.500000, -70.665426 ], [ 22.568665, -70.696320 ], [ 23.096008, -70.612614 ], [ 23.549194, -70.539543 ], [ 33.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -70.566062 ], [ 22.541199, -70.685421 ], [ 22.280273, -70.685421 ], [ 22.280273, -70.566062 ] ] ], [ [ [ 33.969727, -68.517173 ], [ 33.969727, -70.685421 ], [ 22.642822, -70.685421 ], [ 23.096008, -70.612614 ], [ 23.664551, -70.520318 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.461615 ], [ 28.092041, -70.324288 ], [ 29.149475, -70.206506 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.989441, -69.658041 ], [ 32.752991, -69.384181 ], [ 33.302307, -68.834777 ], [ 33.750000, -68.573431 ], [ 33.868103, -68.502080 ], [ 33.969727, -68.517173 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.371948, -31.765537 ], [ 29.165955, -31.952162 ], [ 28.924255, -32.170963 ], [ 28.218384, -32.771110 ], [ 27.463074, -33.224903 ], [ 26.419373, -33.614619 ], [ 25.908508, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.172424, -33.795126 ], [ 24.675293, -33.986641 ], [ 23.593140, -33.792844 ], [ 22.986145, -33.916013 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.890937 ], [ 22.280273, -33.975253 ], [ 22.280273, -31.765537 ], [ 29.371948, -31.765537 ] ] ] } } @@ -3776,6 +5050,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -83.956169 ], [ 45.219727, -85.070048 ], [ 33.530273, -85.070048 ], [ 33.530273, -83.956169 ], [ 45.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -82.648222 ], [ 45.219727, -84.002262 ], [ 33.530273, -84.002262 ], [ 33.530273, -82.648222 ], [ 45.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -81.059130 ], [ 45.219727, -82.704241 ], [ 33.530273, -82.704241 ], [ 33.530273, -81.059130 ], [ 45.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -79.129976 ], [ 45.219727, -81.127169 ], [ 33.530273, -81.127169 ], [ 33.530273, -79.129976 ], [ 45.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -76.790701 ], [ 45.219727, -79.212538 ], [ 33.530273, -79.212538 ], [ 33.530273, -76.790701 ], [ 45.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -73.958939 ], [ 45.219727, -76.890745 ], [ 33.530273, -76.890745 ], [ 33.530273, -73.958939 ], [ 45.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -70.539543 ], [ 45.219727, -74.079925 ], [ 33.530273, -74.079925 ], [ 33.530273, -70.539543 ], [ 45.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -67.959179 ], [ 45.219727, -70.685421 ], [ 33.530273, -70.685421 ], [ 33.530273, -68.702491 ], [ 33.750000, -68.573431 ], [ 33.868103, -68.502080 ], [ 34.906311, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.647156, -69.776104 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.921326, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.937317, -68.462791 ], [ 44.112854, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.219727, -67.959179 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.337524, -21.739091 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.532532, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.038147, -24.477150 ], [ 34.214172, -24.814161 ], [ 33.750000, -25.025884 ], [ 33.530273, -25.122906 ], [ 33.530273, -21.739091 ], [ 35.337524, -21.739091 ] ] ] } } @@ -3950,6 +5272,60 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -83.956169 ], [ 56.469727, -85.070048 ], [ 44.780273, -85.070048 ], [ 44.780273, -83.956169 ], [ 56.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -82.648222 ], [ 56.469727, -84.002262 ], [ 44.780273, -84.002262 ], [ 44.780273, -82.648222 ], [ 56.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -81.059130 ], [ 56.469727, -82.704241 ], [ 44.780273, -82.704241 ], [ 44.780273, -81.059130 ], [ 56.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -79.129976 ], [ 56.469727, -81.127169 ], [ 44.780273, -81.127169 ], [ 44.780273, -79.129976 ], [ 56.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -76.790701 ], [ 56.469727, -79.212538 ], [ 44.780273, -79.212538 ], [ 44.780273, -76.790701 ], [ 56.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -73.958939 ], [ 56.469727, -76.890745 ], [ 44.780273, -76.890745 ], [ 44.780273, -73.958939 ], [ 56.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -70.539543 ], [ 56.469727, -74.079925 ], [ 44.780273, -74.079925 ], [ 44.780273, -70.539543 ], [ 56.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, -66.425537 ], [ 56.469727, -70.685421 ], [ 44.780273, -70.685421 ], [ 44.780273, -68.083559 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.816505 ], [ 46.502380, -67.600849 ], [ 47.441711, -67.717778 ], [ 48.342590, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.930115, -67.111272 ], [ 50.751343, -66.875109 ], [ 50.949097, -66.523110 ], [ 50.979309, -66.513260 ], [ 51.248474, -66.425537 ], [ 56.469727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.533386, -65.817407 ], [ 55.412292, -65.875847 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 56.469727, -66.013552 ], [ 56.469727, -66.600676 ], [ 50.905151, -66.600676 ], [ 50.949097, -66.523110 ], [ 50.979309, -66.513260 ], [ 51.789551, -66.248057 ], [ 52.613525, -66.052601 ], [ 53.610535, -65.896046 ], [ 54.533386, -65.817407 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.142090, -21.739091 ], [ 48.076172, -21.943046 ], [ 47.930603, -22.390714 ], [ 47.546082, -23.780318 ], [ 47.095642, -24.941238 ], [ 46.279907, -25.177602 ], [ 45.409241, -25.599425 ], [ 45.000000, -25.418470 ], [ 44.832458, -25.344026 ], [ 44.780273, -25.321684 ], [ 44.780273, -21.739091 ], [ 48.142090, -21.739091 ] ] ] } } @@ -4084,6 +5460,60 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -83.956169 ], [ 67.719727, -85.070048 ], [ 56.030273, -85.070048 ], [ 56.030273, -83.956169 ], [ 67.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -82.648222 ], [ 67.719727, -84.002262 ], [ 56.030273, -84.002262 ], [ 56.030273, -82.648222 ], [ 67.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -81.059130 ], [ 67.719727, -82.704241 ], [ 56.030273, -82.704241 ], [ 56.030273, -81.059130 ], [ 67.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -79.129976 ], [ 67.719727, -81.127169 ], [ 56.030273, -81.127169 ], [ 56.030273, -79.129976 ], [ 67.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -76.790701 ], [ 67.719727, -79.212538 ], [ 56.030273, -79.212538 ], [ 56.030273, -76.790701 ], [ 67.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -73.958939 ], [ 67.719727, -76.890745 ], [ 56.030273, -76.890745 ], [ 56.030273, -73.958939 ], [ 67.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, -70.539543 ], [ 67.719727, -74.079925 ], [ 56.030273, -74.079925 ], [ 56.030273, -70.539543 ], [ 67.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.197571, -66.425537 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.680174 ], [ 58.136902, -67.012792 ], [ 58.743896, -67.286894 ], [ 59.938660, -67.404322 ], [ 60.603333, -67.679214 ], [ 61.427307, -67.952994 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.816505 ], [ 64.050293, -67.404322 ], [ 64.992371, -67.620726 ], [ 65.970154, -67.737557 ], [ 66.909485, -67.855879 ], [ 67.500000, -67.902421 ], [ 67.719727, -67.919979 ], [ 67.719727, -70.685421 ], [ 56.030273, -70.685421 ], [ 56.030273, -66.425537 ], [ 57.197571, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.030273, -65.940874 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 57.156372, -66.248057 ], [ 57.216797, -66.513260 ], [ 57.236023, -66.600676 ], [ 56.030273, -66.600676 ], [ 56.030273, -65.940874 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.705200, 22.146708 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.716128 ], [ 59.282227, 21.435173 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.429587 ], [ 58.032532, 20.483628 ], [ 57.823792, 20.244160 ], [ 57.664490, 19.738269 ], [ 57.788086, 19.069906 ], [ 57.691956, 18.945258 ], [ 57.233276, 18.950454 ], [ 56.607056, 18.575965 ], [ 56.510925, 18.088423 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 56.030273, 17.879431 ], [ 56.030273, 22.146708 ], [ 59.705200, 22.146708 ] ] ] } } @@ -4174,6 +5604,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -83.956169 ], [ 78.969727, -85.070048 ], [ 67.280273, -85.070048 ], [ 67.280273, -83.956169 ], [ 78.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -82.648222 ], [ 78.969727, -84.002262 ], [ 67.280273, -84.002262 ], [ 67.280273, -82.648222 ], [ 78.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -81.059130 ], [ 78.969727, -82.704241 ], [ 67.280273, -82.704241 ], [ 67.280273, -81.059130 ], [ 78.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -79.129976 ], [ 78.969727, -81.127169 ], [ 67.280273, -81.127169 ], [ 67.280273, -79.129976 ], [ 78.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -76.790701 ], [ 78.969727, -79.212538 ], [ 67.280273, -79.212538 ], [ 67.280273, -76.790701 ], [ 78.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -73.958939 ], [ 78.969727, -76.890745 ], [ 67.280273, -76.890745 ], [ 67.280273, -73.958939 ], [ 78.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, -70.539543 ], [ 78.969727, -74.079925 ], [ 67.280273, -74.079925 ], [ 67.280273, -70.539543 ], [ 67.892761, -70.539543 ], [ 67.917480, -70.612614 ], [ 67.947693, -70.696320 ], [ 69.065552, -70.677244 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.947693, -71.852807 ], [ 68.711243, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.023865, -72.088277 ], [ 71.573181, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.452087, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.155212, -70.612614 ], [ 73.207397, -70.539543 ], [ 78.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, -67.884849 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.710999, -68.972193 ], [ 69.672546, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.595886, -69.932185 ], [ 67.810364, -70.304859 ], [ 67.917480, -70.612614 ], [ 67.944946, -70.685421 ], [ 67.280273, -70.685421 ], [ 67.280273, -67.884849 ] ] ], [ [ [ 69.062805, -70.685421 ], [ 68.617859, -70.685421 ], [ 69.065552, -70.677244 ], [ 69.062805, -70.685421 ] ] ], [ [ [ 78.969727, -70.685421 ], [ 73.103027, -70.685421 ], [ 73.155212, -70.612614 ], [ 73.333740, -70.364014 ], [ 73.863831, -69.873672 ], [ 74.490051, -69.776104 ], [ 75.627136, -69.736188 ], [ 76.624146, -69.618859 ], [ 77.643127, -69.462372 ], [ 78.132019, -69.070526 ], [ 78.425903, -68.697503 ], [ 78.750000, -68.524213 ], [ 78.969727, -68.404235 ], [ 78.969727, -70.685421 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.246826, -48.777913 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.064869 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.708496 ], [ 68.744202, -49.774170 ], [ 68.719482, -49.240914 ], [ 68.832092, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.884277, -48.777913 ], [ 69.246826, -48.777913 ] ] ] } } @@ -4288,6 +5766,60 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -83.956169 ], [ 90.219727, -85.070048 ], [ 78.530273, -85.070048 ], [ 78.530273, -83.956169 ], [ 90.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -82.648222 ], [ 90.219727, -84.002262 ], [ 78.530273, -84.002262 ], [ 78.530273, -82.648222 ], [ 90.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -81.059130 ], [ 90.219727, -82.704241 ], [ 78.530273, -82.704241 ], [ 78.530273, -81.059130 ], [ 90.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -79.129976 ], [ 90.219727, -81.127169 ], [ 78.530273, -81.127169 ], [ 78.530273, -79.129976 ], [ 90.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -76.790701 ], [ 90.219727, -79.212538 ], [ 78.530273, -79.212538 ], [ 78.530273, -76.790701 ], [ 90.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -73.958939 ], [ 90.219727, -76.890745 ], [ 78.530273, -76.890745 ], [ 78.530273, -73.958939 ], [ 90.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, -70.539543 ], [ 90.219727, -74.079925 ], [ 78.530273, -74.079925 ], [ 78.530273, -70.539543 ], [ 90.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.277893, -66.425537 ], [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.827209, -66.953727 ], [ 89.670410, -67.149699 ], [ 90.000000, -67.176348 ], [ 90.219727, -67.194453 ], [ 90.219727, -70.685421 ], [ 78.530273, -70.685421 ], [ 78.530273, -68.642556 ], [ 78.750000, -68.524213 ], [ 79.112549, -68.325248 ], [ 80.093079, -68.071253 ], [ 80.933533, -67.875541 ], [ 81.482849, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.773743, -67.208289 ], [ 83.773499, -67.307035 ], [ 84.674377, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.750793, -67.149699 ], [ 87.475891, -66.875109 ], [ 87.756042, -66.513260 ], [ 87.821960, -66.425537 ], [ 88.277893, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.472900, -66.600676 ], [ 87.687378, -66.600676 ], [ 87.756042, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.859619, 11.393879 ], [ 79.859619, 11.178402 ], [ 79.856873, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.884583, 9.546583 ], [ 79.189453, 9.218694 ], [ 78.750000, 9.080400 ], [ 78.530273, 9.012590 ], [ 78.530273, 11.393879 ], [ 79.859619, 11.393879 ] ] ] } } @@ -4380,6 +5912,60 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -83.956169 ], [ 101.469727, -85.070048 ], [ 89.780273, -85.070048 ], [ 89.780273, -83.956169 ], [ 101.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -82.648222 ], [ 101.469727, -84.002262 ], [ 89.780273, -84.002262 ], [ 89.780273, -82.648222 ], [ 101.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -81.059130 ], [ 101.469727, -82.704241 ], [ 89.780273, -82.704241 ], [ 89.780273, -81.059130 ], [ 101.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -79.129976 ], [ 101.469727, -81.127169 ], [ 89.780273, -81.127169 ], [ 89.780273, -79.129976 ], [ 101.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -76.790701 ], [ 101.469727, -79.212538 ], [ 89.780273, -79.212538 ], [ 89.780273, -76.790701 ], [ 101.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -73.958939 ], [ 101.469727, -76.890745 ], [ 89.780273, -76.890745 ], [ 89.780273, -73.958939 ], [ 101.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -70.539543 ], [ 101.469727, -74.079925 ], [ 89.780273, -74.079925 ], [ 89.780273, -70.539543 ], [ 101.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -66.425537 ], [ 101.469727, -70.685421 ], [ 89.780273, -70.685421 ], [ 89.780273, -67.159296 ], [ 90.000000, -67.176348 ], [ 90.628967, -67.228496 ], [ 91.587524, -67.111272 ], [ 92.606506, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.111272 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.385318 ], [ 96.679688, -67.247624 ], [ 97.759094, -67.247624 ], [ 98.679199, -67.111272 ], [ 99.717407, -67.247624 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.582126 ], [ 101.285706, -66.425537 ], [ 101.469727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, -66.350730 ], [ 101.469727, -66.600676 ], [ 100.862732, -66.600676 ], [ 100.892944, -66.582126 ], [ 101.250000, -66.439813 ], [ 101.469727, -66.350730 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 0.219726 ], [ 101.469727, -2.874465 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 100.901184, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.456482, 0.000000 ], [ 99.261475, 0.184021 ], [ 99.250488, 0.219726 ], [ 101.469727, 0.219726 ] ] ] } } @@ -4498,6 +6084,60 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -83.956169 ], [ 112.719727, -85.070048 ], [ 101.030273, -85.070048 ], [ 101.030273, -83.956169 ], [ 112.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -82.648222 ], [ 112.719727, -84.002262 ], [ 101.030273, -84.002262 ], [ 101.030273, -82.648222 ], [ 112.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -81.059130 ], [ 112.719727, -82.704241 ], [ 101.030273, -82.704241 ], [ 101.030273, -81.059130 ], [ 112.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -79.129976 ], [ 112.719727, -81.127169 ], [ 101.030273, -81.127169 ], [ 101.030273, -79.129976 ], [ 112.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -76.790701 ], [ 112.719727, -79.212538 ], [ 101.030273, -79.212538 ], [ 101.030273, -76.790701 ], [ 112.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -73.958939 ], [ 112.719727, -76.890745 ], [ 101.030273, -76.890745 ], [ 101.030273, -73.958939 ], [ 112.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -70.539543 ], [ 112.719727, -74.079925 ], [ 101.030273, -74.079925 ], [ 101.030273, -70.539543 ], [ 112.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, -66.425537 ], [ 112.719727, -70.685421 ], [ 101.030273, -70.685421 ], [ 101.030273, -66.527486 ], [ 101.285706, -66.425537 ], [ 105.111694, -66.425537 ], [ 105.292969, -66.513260 ], [ 106.180115, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.080750, -66.953727 ], [ 109.157410, -66.836246 ], [ 110.234070, -66.699737 ], [ 110.794373, -66.513260 ], [ 111.058044, -66.425537 ], [ 112.719727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.477478, -65.700128 ], [ 104.241028, -65.974443 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.476990, -66.600676 ], [ 101.030273, -66.600676 ], [ 101.030273, -66.527486 ], [ 101.250000, -66.439813 ], [ 101.576843, -66.307724 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.719727, -66.600676 ], [ 110.533447, -66.600676 ], [ 110.794373, -66.513260 ], [ 111.058044, -66.424439 ], [ 111.741943, -66.130520 ], [ 112.500000, -66.104945 ], [ 112.719727, -66.097156 ], [ 112.719727, -66.600676 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.262268, -5.954827 ], [ 108.069763, -6.345327 ], [ 108.484497, -6.421754 ], [ 108.621826, -6.776444 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.719727, -7.130872 ], [ 112.719727, -8.369127 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.371845 ], [ 111.519470, -8.301188 ], [ 110.585632, -8.121772 ], [ 109.426575, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.354295 ], [ 106.278992, -6.923700 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.645020, 0.219726 ], [ 103.837280, 0.107117 ], [ 103.785095, 0.000000 ], [ 103.436279, -0.711346 ], [ 104.010315, -1.057374 ], [ 104.367371, -1.084835 ], [ 104.537659, -1.782244 ], [ 104.886475, -2.339438 ], [ 105.619812, -2.427252 ], [ 106.105957, -3.060982 ], [ 105.856018, -4.305330 ], [ 105.817566, -5.851010 ], [ 104.707947, -5.872868 ], [ 103.867493, -5.036227 ], [ 102.582092, -4.217682 ], [ 102.153625, -3.612107 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 101.030273, -2.240640 ], [ 101.030273, 0.219726 ], [ 103.645020, 0.219726 ] ] ], [ [ [ 112.719727, 0.219726 ], [ 112.719727, -3.280372 ], [ 112.500000, -3.346180 ], [ 112.066040, -3.477782 ], [ 111.700745, -2.992413 ], [ 111.047058, -3.047268 ], [ 110.223083, -2.932069 ], [ 110.069275, -1.592812 ], [ 109.569397, -1.312751 ], [ 109.091492, -0.458674 ], [ 109.017334, 0.000000 ], [ 108.981628, 0.219726 ], [ 112.719727, 0.219726 ] ] ] ] } } @@ -4610,6 +6250,60 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -83.956169 ], [ 123.969727, -85.070048 ], [ 112.280273, -85.070048 ], [ 112.280273, -83.956169 ], [ 123.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -82.648222 ], [ 123.969727, -84.002262 ], [ 112.280273, -84.002262 ], [ 112.280273, -82.648222 ], [ 123.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -81.059130 ], [ 123.969727, -82.704241 ], [ 112.280273, -82.704241 ], [ 112.280273, -81.059130 ], [ 123.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -79.129976 ], [ 123.969727, -81.127169 ], [ 112.280273, -81.127169 ], [ 112.280273, -79.129976 ], [ 123.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -76.790701 ], [ 123.969727, -79.212538 ], [ 112.280273, -79.212538 ], [ 112.280273, -76.790701 ], [ 123.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -73.958939 ], [ 123.969727, -76.890745 ], [ 112.280273, -76.890745 ], [ 112.280273, -73.958939 ], [ 123.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -70.539543 ], [ 123.969727, -74.079925 ], [ 112.280273, -74.079925 ], [ 112.280273, -70.539543 ], [ 123.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.982910, -66.425537 ], [ 115.180664, -66.513260 ], [ 115.600891, -66.699737 ], [ 116.696777, -66.660596 ], [ 117.383423, -66.914988 ], [ 118.578186, -67.169955 ], [ 119.830627, -67.267798 ], [ 120.868835, -67.189129 ], [ 121.654358, -66.875109 ], [ 122.319031, -66.562469 ], [ 122.887573, -66.513260 ], [ 123.219910, -66.483688 ], [ 123.409424, -66.513260 ], [ 123.750000, -66.564654 ], [ 123.969727, -66.597403 ], [ 123.969727, -70.685421 ], [ 112.280273, -70.685421 ], [ 112.280273, -66.425537 ], [ 114.982910, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.875847 ], [ 114.386902, -66.072660 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.378418, -66.600676 ], [ 112.280273, -66.600676 ], [ 112.280273, -66.112731 ], [ 112.500000, -66.104945 ], [ 112.859802, -66.091591 ], [ 113.604126, -65.875847 ] ] ], [ [ [ 123.409424, -66.513260 ], [ 123.969727, -66.597403 ], [ 123.969727, -66.600676 ], [ 122.239380, -66.600676 ], [ 122.319031, -66.562469 ], [ 122.887573, -66.513260 ], [ 123.219910, -66.483688 ], [ 123.409424, -66.513260 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -31.765537 ], [ 123.969727, -33.548262 ], [ 123.750000, -33.790561 ], [ 123.659363, -33.888658 ], [ 122.810669, -33.913734 ], [ 122.181702, -34.002581 ], [ 121.297302, -33.820230 ], [ 120.577698, -33.929688 ], [ 119.891052, -33.975253 ], [ 119.297791, -34.508820 ], [ 119.006653, -34.463542 ], [ 118.504028, -34.746126 ], [ 118.023376, -35.063725 ], [ 117.292786, -35.023249 ], [ 116.622620, -35.023249 ], [ 115.562439, -34.384246 ], [ 115.024109, -34.195901 ], [ 115.046082, -33.621481 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.259360 ], [ 115.677795, -32.900344 ], [ 115.801392, -32.203505 ], [ 115.751953, -31.952162 ], [ 115.716248, -31.765537 ], [ 123.969727, -31.765537 ] ] ] } } @@ -4718,6 +6412,60 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -83.956169 ], [ 135.219727, -85.070048 ], [ 123.530273, -85.070048 ], [ 123.530273, -83.956169 ], [ 135.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -82.648222 ], [ 135.219727, -84.002262 ], [ 123.530273, -84.002262 ], [ 123.530273, -82.648222 ], [ 135.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -81.059130 ], [ 135.219727, -82.704241 ], [ 123.530273, -82.704241 ], [ 123.530273, -81.059130 ], [ 135.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -79.129976 ], [ 135.219727, -81.127169 ], [ 123.530273, -81.127169 ], [ 123.530273, -79.129976 ], [ 135.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -76.790701 ], [ 135.219727, -79.212538 ], [ 123.530273, -79.212538 ], [ 123.530273, -76.790701 ], [ 135.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -73.958939 ], [ 135.219727, -76.890745 ], [ 123.530273, -76.890745 ], [ 123.530273, -73.958939 ], [ 135.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -70.539543 ], [ 135.219727, -74.079925 ], [ 123.530273, -74.079925 ], [ 123.530273, -70.539543 ], [ 135.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -66.425537 ], [ 135.219727, -70.685421 ], [ 123.530273, -70.685421 ], [ 123.530273, -66.530768 ], [ 123.750000, -66.564654 ], [ 124.120789, -66.621392 ], [ 125.158997, -66.719285 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.880859, -66.660596 ], [ 128.800964, -66.758334 ], [ 129.701843, -66.582126 ], [ 130.177002, -66.513260 ], [ 130.778503, -66.425537 ], [ 135.219727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.530273, -66.530768 ], [ 123.983459, -66.600676 ], [ 123.530273, -66.600676 ], [ 123.530273, -66.530768 ] ] ], [ [ [ 127.342529, -66.600676 ], [ 125.870361, -66.600676 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.342529, -66.600676 ] ] ], [ [ [ 135.219727, -65.373705 ], [ 135.219727, -66.600676 ], [ 129.608459, -66.600676 ], [ 129.701843, -66.582126 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.424439 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.854675, -66.287851 ], [ 134.755554, -66.209308 ], [ 135.000000, -65.776871 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ], [ 135.219727, -65.373705 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.219727, -33.925130 ], [ 135.000000, -33.669497 ], [ 134.612732, -33.222605 ], [ 134.085388, -32.847289 ], [ 134.272156, -32.616243 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.857910, -31.765537 ], [ 135.219727, -31.765537 ], [ 135.219727, -33.925130 ] ] ], [ [ [ 128.902588, -31.765537 ], [ 128.226929, -31.952162 ], [ 127.100830, -32.280167 ], [ 126.147766, -32.215125 ], [ 125.087585, -32.727220 ], [ 124.219666, -32.957977 ], [ 124.027405, -33.481854 ], [ 123.750000, -33.790561 ], [ 123.659363, -33.888658 ], [ 123.530273, -33.893217 ], [ 123.530273, -31.765537 ], [ 128.902588, -31.765537 ] ] ], [ [ [ 135.219727, -34.279914 ], [ 135.219727, -34.483920 ], [ 135.205994, -34.477128 ], [ 135.219727, -34.279914 ] ] ] ] } } @@ -4820,6 +6568,60 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -83.956169 ], [ 146.469727, -85.070048 ], [ 134.780273, -85.070048 ], [ 134.780273, -83.956169 ], [ 146.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -82.648222 ], [ 146.469727, -84.002262 ], [ 134.780273, -84.002262 ], [ 134.780273, -82.648222 ], [ 146.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -81.059130 ], [ 146.469727, -82.704241 ], [ 134.780273, -82.704241 ], [ 134.780273, -81.059130 ], [ 146.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -79.129976 ], [ 146.469727, -81.127169 ], [ 134.780273, -81.127169 ], [ 134.780273, -79.129976 ], [ 146.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -76.790701 ], [ 146.469727, -79.212538 ], [ 134.780273, -79.212538 ], [ 134.780273, -76.790701 ], [ 146.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -73.958939 ], [ 146.469727, -76.890745 ], [ 134.780273, -76.890745 ], [ 134.780273, -73.958939 ], [ 146.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -70.539543 ], [ 146.469727, -74.079925 ], [ 134.780273, -74.079925 ], [ 134.780273, -70.539543 ], [ 146.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.189270, -66.425537 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.617737, -66.777835 ], [ 137.458191, -66.953727 ], [ 138.595276, -66.895596 ], [ 139.908142, -66.875109 ], [ 140.809021, -66.816791 ], [ 142.119141, -66.816791 ], [ 143.061218, -66.797321 ], [ 144.371338, -66.836246 ], [ 145.489197, -66.914988 ], [ 146.195068, -67.228496 ], [ 145.997314, -67.600849 ], [ 146.250000, -67.714654 ], [ 146.469727, -67.814431 ], [ 146.469727, -70.685421 ], [ 134.780273, -70.685421 ], [ 134.780273, -66.425537 ], [ 136.189270, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.068665, -65.308387 ], [ 135.694885, -65.582314 ], [ 135.873413, -66.032527 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.398010, -66.600676 ], [ 134.780273, -66.600676 ], [ 134.780273, -66.169390 ], [ 135.000000, -65.776871 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.456238, -40.813809 ], [ 145.920410, -40.979898 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.110399 ], [ 146.469727, -43.570442 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.692530 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.725647, -40.979898 ], [ 144.736633, -40.813809 ], [ 145.456238, -40.813809 ] ] ] } } @@ -4906,6 +6708,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -83.956169 ], [ 157.719727, -85.070048 ], [ 146.030273, -85.070048 ], [ 146.030273, -83.956169 ], [ 157.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -82.648222 ], [ 157.719727, -84.002262 ], [ 146.030273, -84.002262 ], [ 146.030273, -82.648222 ], [ 157.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -81.059130 ], [ 157.719727, -82.704241 ], [ 146.030273, -82.704241 ], [ 146.030273, -81.059130 ], [ 157.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -79.129976 ], [ 157.719727, -81.127169 ], [ 146.030273, -81.127169 ], [ 146.030273, -79.129976 ], [ 157.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -76.790701 ], [ 157.719727, -79.212538 ], [ 146.030273, -79.212538 ], [ 146.030273, -76.790701 ], [ 157.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -73.958939 ], [ 157.719727, -76.890745 ], [ 146.030273, -76.890745 ], [ 146.030273, -73.958939 ], [ 157.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.719727, -70.539543 ], [ 157.719727, -74.079925 ], [ 146.030273, -74.079925 ], [ 146.030273, -70.539543 ], [ 157.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -67.614451 ], [ 146.250000, -67.714654 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.129645 ], [ 148.837280, -68.385020 ], [ 150.130920, -68.560384 ], [ 151.482239, -68.717450 ], [ 152.501221, -68.874409 ], [ 153.635559, -68.894198 ], [ 154.283752, -68.560384 ], [ 155.165405, -68.834777 ], [ 155.928955, -69.148876 ], [ 156.810608, -69.384181 ], [ 157.500000, -69.439234 ], [ 157.719727, -69.457554 ], [ 157.719727, -70.685421 ], [ 146.030273, -70.685421 ], [ 146.030273, -67.614451 ] ] ], [ [ [ 146.030273, -67.543216 ], [ 146.030273, -67.155031 ], [ 146.195068, -67.228496 ], [ 146.030273, -67.543216 ] ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.738647, -40.813809 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.016052, -42.405207 ], [ 147.911682, -43.211182 ], [ 147.562866, -42.936318 ], [ 146.867981, -43.634087 ], [ 146.661987, -43.580391 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 146.030273, -43.524655 ], [ 146.030273, -41.017211 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.664490, -40.813809 ], [ 147.738647, -40.813809 ] ] ] } } @@ -4974,6 +6824,54 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -83.956169 ], [ 168.969727, -85.070048 ], [ 157.280273, -85.070048 ], [ 157.280273, -83.956169 ], [ 168.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.819641, -82.648222 ], [ 164.945984, -82.676285 ], [ 165.094299, -82.708774 ], [ 166.602173, -83.022216 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 168.969727, -83.409506 ], [ 168.969727, -84.002262 ], [ 157.280273, -84.002262 ], [ 157.280273, -82.648222 ], [ 164.819641, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.235596, -81.059130 ], [ 160.372925, -81.093214 ], [ 161.119995, -81.278386 ], [ 161.628113, -81.689909 ], [ 162.490540, -82.062067 ], [ 163.704529, -82.395157 ], [ 164.945984, -82.676285 ], [ 165.072327, -82.704241 ], [ 157.280273, -82.704241 ], [ 157.280273, -81.059130 ], [ 160.235596, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.328247, -79.129976 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200709 ], [ 160.315247, -80.572647 ], [ 159.787903, -80.945299 ], [ 160.372925, -81.093214 ], [ 160.507507, -81.127169 ], [ 157.280273, -81.127169 ], [ 157.280273, -79.129976 ], [ 163.328247, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.473816, -76.790701 ], [ 163.476562, -76.840816 ], [ 163.487549, -77.065265 ], [ 164.056091, -77.457084 ], [ 164.273071, -77.829694 ], [ 164.742737, -78.182400 ], [ 166.602173, -78.319421 ], [ 166.994934, -78.750659 ], [ 165.193176, -78.907100 ], [ 163.666077, -79.122722 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.691284, -79.212538 ], [ 157.280273, -79.212538 ], [ 157.280273, -76.790701 ], [ 163.473816, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.731018, -73.958939 ], [ 167.632141, -74.019543 ], [ 167.384949, -74.164835 ], [ 166.094055, -74.380731 ], [ 165.643616, -74.772236 ], [ 164.956970, -75.145003 ], [ 164.231873, -75.458589 ], [ 163.822632, -75.869999 ], [ 163.567200, -76.241939 ], [ 163.468323, -76.693067 ], [ 163.476562, -76.840816 ], [ 163.479309, -76.890745 ], [ 157.280273, -76.890745 ], [ 157.280273, -73.958939 ], [ 167.731018, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.482544, -70.539543 ], [ 161.570435, -70.578852 ], [ 161.803894, -70.612614 ], [ 162.685547, -70.736230 ], [ 163.841858, -70.716285 ], [ 164.918518, -70.775156 ], [ 166.113281, -70.755250 ], [ 167.308044, -70.833855 ], [ 168.423157, -70.971342 ], [ 168.750000, -71.044637 ], [ 168.969727, -71.094535 ], [ 168.969727, -73.693467 ], [ 168.750000, -73.719666 ], [ 167.972717, -73.812574 ], [ 167.632141, -74.019543 ], [ 167.530518, -74.079925 ], [ 157.280273, -74.079925 ], [ 157.280273, -70.539543 ], [ 161.482544, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.280273, -69.421864 ], [ 157.500000, -69.439234 ], [ 158.024597, -69.481635 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.991475 ], [ 160.804138, -70.226028 ], [ 161.570435, -70.578852 ], [ 161.803894, -70.612614 ], [ 162.322998, -70.685421 ], [ 157.280273, -70.685421 ], [ 157.280273, -69.421864 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -43.923615 ], [ 168.969727, -46.632465 ], [ 168.750000, -46.626806 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.676331, -46.219752 ], [ 166.508789, -45.851760 ], [ 167.044373, -45.110362 ], [ 168.302307, -44.123085 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 168.969727, -43.923615 ] ] ] } } @@ -5030,6 +6928,24 @@ ] } ] } , +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 171.131287, -83.956169 ], [ 171.441650, -83.979259 ], [ 172.282104, -84.041167 ], [ 172.474365, -84.117659 ], [ 173.221436, -84.413700 ], [ 175.984497, -84.158893 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.070048 ], [ 168.530273, -85.070048 ], [ 168.530273, -83.956169 ], [ 171.131287, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.530273, -83.286701 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 169.403687, -83.825811 ], [ 171.441650, -83.979259 ], [ 171.752014, -84.002262 ], [ 168.530273, -84.002262 ], [ 168.530273, -83.286701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.530273, -70.994611 ], [ 168.750000, -71.044637 ], [ 169.461365, -71.206344 ], [ 170.499573, -71.401793 ], [ 171.205444, -71.696469 ], [ 171.087341, -72.088277 ], [ 170.559998, -72.440507 ], [ 170.109558, -72.891378 ], [ 169.755249, -73.244129 ], [ 169.285583, -73.655637 ], [ 168.750000, -73.719666 ], [ 168.530273, -73.746594 ], [ 168.530273, -70.994611 ] ] ] } } +] } +] } +, { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.963257, -40.813809 ], [ 173.051147, -40.979898 ], [ 173.246155, -41.331451 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ], [ 174.245911, -41.347948 ], [ 174.245911, -41.769263 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.371116 ], [ 173.078613, -43.852355 ], [ 172.306824, -43.864238 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.896741 ], [ 170.614929, -45.907211 ], [ 169.332275, -46.640008 ], [ 168.750000, -46.626806 ], [ 168.530273, -46.621147 ], [ 168.530273, -44.057986 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 169.667358, -43.554520 ], [ 170.524292, -43.030753 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.312317, -40.813809 ], [ 172.963257, -40.813809 ] ] ], [ [ [ 176.355286, -40.813809 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.288126 ], [ 175.237427, -41.687271 ], [ 175.067139, -41.424194 ], [ 174.649658, -41.279871 ], [ 174.861145, -40.979898 ], [ 174.979248, -40.813809 ], [ 176.355286, -40.813809 ] ] ] ] } } diff --git a/version.hpp b/version.hpp index 70105c8..1320b5e 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "tippecanoe v1.27.5\n" +#define VERSION "tippecanoe v1.27.6\n" #endif diff --git a/write_json.cpp b/write_json.cpp index 715facb..12d268b 100644 --- a/write_json.cpp +++ b/write_json.cpp @@ -118,19 +118,11 @@ void layer_to_geojson(FILE *fp, mvt_layer const &layer, unsigned z, unsigned x, } else if (val.type == mvt_double) { fprintq(fp, key); double v = val.numeric_value.double_value; - if (v == (long long) v) { - fprintf(fp, ": %lld", (long long) v); - } else { - fprintf(fp, ": %s", milo::dtoa_milo(v).c_str()); - } + fprintf(fp, ": %s", milo::dtoa_milo(v).c_str()); } else if (val.type == mvt_float) { fprintq(fp, key); double v = val.numeric_value.float_value; - if (v == (long long) v) { - fprintf(fp, ": %lld", (long long) v); - } else { - fprintf(fp, ": %s", milo::dtoa_milo(v).c_str()); - } + fprintf(fp, ": %s", milo::dtoa_milo(v).c_str()); } else if (val.type == mvt_sint) { fprintq(fp, key); fprintf(fp, ": %lld", val.numeric_value.sint_value);